Tagged Questions
3
votes
1answer
19 views
Vim settings within ncftp edit
I'm using the ncftp utility. It has an edit command which handles the get, edit, put sequence for me as in GUI ftp clients.
It's great except for one thing, I get vanilla vim, with none of my ...
5
votes
2answers
1k views
How do I cycle through panes inside a window in tmux like in screen?
I thought Tmux - move window to pane was the same question but it doesn't seem to be.
Coming from using GNU screen regularly, I'm looking for tmux to do the same things. On of the things I do ...
1
vote
1answer
82 views
map “Ñ” to “:” in vim
I want map the key Ñ (Shift+ñ) to : in the normal mode of vim.
I've searched vim configs with Ntilde but I've found nothing. Any idea?.
3
votes
1answer
183 views
gvim -p limit of opened tabs?
When I run :
gvim -p *.xyz
I find that not all files are opened in tabs.
It feels, like a kind of tab limit?
But ! When I try to open unopened with :
:tabnew
it is opened next to previous ...
4
votes
1answer
119 views
Rewrite a Vim function to a one-line map
This works:
nmap <silent> <S-t> :call InventTab()<CR>
function InventTab()
set expandtab!
if &expandtab
retab
echo 'spaces'
else
retab!
...
7
votes
3answers
442 views
Temporary .vimrc
Is there a way to read a .vimrc file for only a single ssh session? That is, when I log in I perform some operation so that vim uses say /tmp/myvimrc until I log out?
I do not want to permanently ...