Tagged Questions
1
vote
0answers
253 views
cscope not working with shortcuts in .vimrc file
I am trying to add shortcuts to cscope usage by adding the following statements in .vimrc file.
" cscope mappings
if has("cscope")
nmap <C-\>s :scs find s ...
1
vote
2answers
330 views
Vim hanging after parsing .vimrc (even a blank one) file on Solaris 10
I am having a problem with vim 7.2 hanging (for about 10 seconds) after it parses the .vimrc file. I had a similar issue in the past with tcsh on linux, but it was resolved by setting TERM to ...
0
votes
1answer
611 views
How do I bind 'jk' to Esc key in Vi-Mode in tcsh shell
I love and use vim daily on tcsh. I love everything about vim. And one of the reasons why I love it so much is I dont have to lift my hands to do stuff. I have jk mapped to Esc key in vim. But ...
7
votes
7answers
3k views
How do I launch an editor from a shell script?
I would like my tcsh script to launch an editor (e.g., vi, emacs):
#!/bin/tcsh
vi my_file
This starts up vi with my_file but first displays a warning "Vim: Warning: Output is not to a terminal" and ...