vim termで最後にshellが残ってしまって残念な時の対処法
vim termで快適に作業をするために
一応、タイトルとは関係ないですけど自分のvimrcを晒します(ゴリラさんの記事にだいぶ啓発されました)
set noswapfile
nnoremap s :w<CR>
nnoremap qq :q<CR>
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
set statusline=\PATH:\ %r%F\ \ \ \ \LINE:\ %l/%L/%P\ TIME:\ %{strftime('%c')}
set tags=./tags;$HOME
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
call vundle#end()
filetype plugin indent on
let g:w3m#command = '/usr/local/bin/w3m'
nnoremap <Up> :echo "No up for you!"<CR>
vnoremap <Up> :<C-u>echo "No up for you!"<CR>
inoremap <Up> <C-o>:echo "No up for you!"<CR>
nnoremap <Down> :echo "No down for you!"<CR>
vnoremap <Down> :<C-u>echo "No down for you!"<CR>
inoremap <Down> <C-o>:echo "No down for you!"<CR>
nnoremap <Left> :echo "No left for you!"<CR>
vnoremap <Left> :<C-u>echo "No left for you!"<CR>
inoremap <Left> <C-o>:echo "No left for you!"<CR>
nnoremap <Right> :echo "No right for you!"<CR>
vnoremap <Right> :<C-u>echo "No right for you!"<CR>
inoremap <Right> <C-o>:echo "No right for you!"<CR>
set langmenu=en_US
let $LANG = 'en_US'
:command Docker :vert term ++close docui
:command Lgit :vert term ++close lazygit
:command Blame :vert term ++close git blame %
:command Shell :vert term
:command Curwin :term ++curwin
command CDC cd %:p:h
nnoremap m :res +5<CR>
nnoremap , :res -5<CR>
nnoremap <C-x>s :bot term ++close ++rows=12<CR>
nnoremap <C-x>v :vert term ++close<CR>
nnoremap <C-x>n :NERDTreeToggle<CR>
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#left_sep = ' '
let g:airline#extensions#tabline#left_alt_sep = '|'
let g:airline#extensions#tabline#formatter = 'default'
"let g:airline_theme='aurora'
"let g:airline_theme='light'
let g:airline_theme='cool'
Plugin 'scrooloose/nerdcommenter'
" Add spaces after comment delimiters by default
let g:NERDSpaceDelims = 1
" Use compact syntax for prettified multi-line comments
let g:NERDCompactSexyComs = 1
" Align line-wise comment delimiters flush left instead of following code indentation
let g:NERDDefaultAlign = 'left'
" Set a language to use its alternate delimiters by default
let g:NERDAltDelims_java = 1
" Add your own custom formats or override the defaults
let g:NERDCustomDelimiters = { 'c': { 'left': '/**','right': '*/' } }
" Allow commenting and inverting empty lines (useful when commenting a region)
let g:NERDCommentEmptyLines = 1
" Enable trimming of trailing whitespace when uncommenting
let g:NERDTrimTrailingWhitespace = 1
" Enable NERDCommenterToggle to check all selected lines is commented or not
let g:NERDToggleCheckAllLines = 1
let g:NERDTreeNodeDelimiter = "\u00a0"
set ignorecase
let g:netrw_keepdir=0
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
Plugin 'sheerun/vim-polyglot'
最後の :bot term ++close
あたりから平均的なIDEのレイアウトをつけているので、やりやすいかと思います。。。
shellが残ってしまって残念な時は...
一応 exitっていうのが打ちにくいので、.bashrc
にエイリアス作ってあげればいいんでないでしょうか..... つまり....
alias :q="exit"
以上です。読んでくれてあざっす
Author And Source
この問題について(vim termで最後にshellが残ってしまって残念な時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/keisugano/items/2058ba7e4b3e9842a2e4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .