Tagged Questions
1
vote
1answer
25 views
Set auto completion for a new filetype
I have a file, which contains lines of function name, now I want to use them for code auto completion, and only for file names end with .XXX.
How should I do it, is it possible to work with ctags or ...
0
votes
1answer
31 views
Why is vim offering me spelling suggestions instead of using the completefunc?
I am trying to set up vim for writing email. I have a plugin to provide autocompletion of email addresses (notmuch abook ). If I do :set completefunc it tells me it is CompleteAddressBook as ...
2
votes
1answer
44 views
Autocompletion of email addresses in vim
I'm playing around with various bits of an email solution, including notmuch and alot. I write my emails in vim and I'd like to have tab completion of email addresses while writing email. Is there a ...
0
votes
1answer
65 views
Vim - Tabs in :o Show up as ^I and Autocomplete Does Not Function
The title basically says it all - in Vim, my tab's show up as ^I, and I'm wondering if anybody knows why this might be. This is especially annoying when using :o to open a file, as the autocomplete ...
3
votes
1answer
240 views
Vim insert mode completion for sentences
I would like to have insert mode completion for sentences rather than lines in vim.
C-x C-l completes lines, but cannot complete sentences that do not start with a new line.
For example:
I have a ...
5
votes
2answers
480 views
vim custom pop up menu
How do I create a custom completion pop up menu.
I would like to be able to begin typing a part of a string then press a custom key combination to bring up a pop up completion of just a certain group ...
2
votes
2answers
540 views
ZSH tab completion: only complete files and not binaries
Is it possible to make a custom zsh completion file,so when hitting tab for filenames it avoids completing the binaries?
For example,I have 2 files , myprogram.c and myprogram,the binary,is it ...