simple terminal in vim
538191ab6 add Spaste
32a618e9f slightly improve Sbind
arguments
- Require
- vim 8.1+ with
+terminal
- Install
Plug 'gu-fan/simpleterm.vim'
" execute commands (async in terminal
Sexe cat test.sh | grep msg
" execute current line
Sline
" start another file
sp build.sh
" start another terminal
Sadd
" bind buffer with last terminal
Sbind
" execute command in clipboard
Spaste
" run background jobs (show me when finished
Srun git push
" finish
wq
show/hide
Sshow
create or show a minimal terminal.
if idx
provided, show terminal of that index
idx
: index of simpleterm's terminal list,0 , -2
isfirst , one before last
Shide
hide the minimal terminal.
Stoggle
toggle the minimal terminal.
execution
Sexe
execute command in terminal, cmd
needed
Sline
execute current line, if visual selected, execute multi line
Sfile
source file, if no file
provided, source current file
Spaste
execute from register {reg}
, if no {reg}
provided, execute clipboard 'reg+'
alter
Scd
change dir of terminal, if no path
, change to current file's dir
Sadd
create another terminal and execute cmd
, prefix num
to change height
not triggerd byScd/Sexe/Sline/Sfile
,cmd
needed
Srun
run a command in background, and show terminal when finished, cmd
needed
Sbind
bind current buffer with terminal arg
in simpleterm's terminal list,
then it only triggered by bind buffer
if no
arg
provided, bind to last terminal
arg
: arg to find buf in terminal list
-1 , -2
islast, one before last
1 , 2
is find by buf number, buf 1, buf 2
!/bin/zsh
find terminal by name
Skill
kill all terminal
exit current terminal ? use exit
Default
nnor <Leader>sw :Sshow<CR>
nnor <Leader>sh :Shide<CR>
nnor <Leader>ss :Stoggle<CR>
nnor <Leader>sc :Scd<CR>
nnor <Leader>se :Sexe<Space>
nnor <Leader>sr :Srun<Space>
nnor <Leader>sl :Sline<CR>
vnor <Leader>sl :Sline<CR>
nnor <Leader>sf :Sfile<CR>
nnor <Leader>sp :Spaste<CR>
nnor <Leader>sa :Sadd<CR>
nnor <Leader>sb :Sbind<CR>
" nnor <Leader>sk :Skill<CR>
nnor <Leader>s0 :Sshow -1<CR>
" In terminal, use <ESC> to escape terminal-mode
" then, use a or i to back to terminal-mode, like insert-mode
tnor <ESC> <C-\><C-n>
" see :h CTRL-W_. for terminal commands
Customize
" mapping your works, e.g.
nnore <Leader>gp :Srun git push<CR>
nnore <Leader>gP :Srun git pull<CR>
" have some func?
" https://gist.github.com/marianposaceanu/6615458
nnore <Leader>fk :20Sadd fortune\|cowsay\|lolcat<CR>
All function and option are in g:simpleterm
object,
change or use it:
g:simpleterm.row = 10 initial win height for new terminal kept for each terminal after resize g:simpleterm.pos = 'below' win position for new terminal g:simpleterm.bufs all the termial of simpleterm
vimrc
set shell=/bin/zsh " set other shell if needed
- Thought
so, as you can easily executing while editing, you can tracking your work as scripts
setup/dev/test/make/deploy/coffee...
also see andreyorst's great conclusion on terminal integration
- Author
- gu.fan at https://github.com/gu-fan
License
The MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.