Log
-
Stop checking settings during source 💬 by Caio 11 years ago
This patch removes the need of having g:qcc_query_command set to anything prior to loading QueryCommandComplete.
-
Read settings from buffer variables first, if available 💬 by Caio 11 years ago
Enable changing settings on a buffer-basis. QueryCommandComplete new tries to read every configuration setting from the buffer-level variables (b:qcc_*) before reading the global score ones (g:qcc_*). This means that now you can have different buffers calling completely different completion functions (and options). This patch builds on top of the idea bootstrapped by @equalsraf on his branch[1]. [1]: https://github.com/equalsraf/querycommandcomplete.vim/commit/7e9a7a602f4ae9c0355ca27cada4ba7173c6ec59
-
Fix the default order for the completion templates by Caio 11 years ago
-
Document new templating options by Caio 11 years ago
-
Add rudimentary template support for the menu entries 💬 by Caio 11 years ago
This patch introduces 3 new configuration variables: g:qcc_format_word (default: "${0} <${1}>") g:qcc_format_abbr (default: "${0}") g:qcc_format_menu (default: "${2}") Which are used to generate the complete menu entries (read the help for 'complete-items' for more details on the meanings of each) The default format is the original one. Given an output (from running g:qcc_query_command) like: FirstName LastName<TAB>email@domain.com<TAB>details The generated completion menu would look like: FirstName LastName | details And selecting the entry completes it to: FirstName LastName <email@domain.com>
-
Update documentation with new options and stats by Caio 11 years ago
-
Make default setup comment clearer by Caio 11 years ago
-
Merge branch 'from_marklee77' 💬 by Caio 11 years ago
Closes pull request #2: https://github.com/caio/querycommandcomplete.vim/pull/2 * from_marklee77: Make multiline support configurable restored multiline support Add support for "%s" in qcc_query_command
-
Make multiline support configurable by Caio 11 years ago
-
restored multiline support by Mark Stillwell 11 years ago
-
Add support for "%s" in qcc_query_command 💬 by Caio 11 years ago
Squashed commit of the following: commit e0f3a6f08095ed28427b214085b32059a2ce281e Author: Mark Stillwell <marklee@fortawesome.org> Date: Tue Dec 25 22:25:08 2012 +0000 update, removed multiline feature temporarily, added support for %s in g:qcc_query_command. commit ab773fae0d14c580efd4498c88d8309e176c514f Author: Mark Stillwell <marklee@fortawesome.org> Date: Sun Dec 23 21:09:41 2012 +0000 fixed regexp to get query command from mutt and added support for multi-line address fields. Ref: https://github.com/caio/querycommandcomplete.vim/pull/2
-
Update docs with new functionality by Caio 12 years ago
-
Merge branch 'from_bhenderson' 💬 by Caio 12 years ago
* from_bhenderson: Only set omnifunc when no configuration present Make setting of omnifunc conditional. Change strlen to len. Update README. Set omnifunc default for mail file types. Make query command default to mutt setting. Fix examples typo.
-
Only set omnifunc when no configuration present 💬 by Caio 12 years ago
While I agree that by default we could try to guess the settings automatically, I want configuration to be explicit when anything is set manually. A little bit of magic is acceptable though :)
-
Merge remote-tracking branch 'bhenderson/master' into from_bhenderson 💬 by Caio 12 years ago
* bhenderson/master: Make setting of omnifunc conditional. Change strlen to len. Update README. Set omnifunc default for mail file types. Make query command default to mutt setting. Fix examples typo.
-
Make setting of omnifunc conditional. Change strlen to len. by bhenderson 12 years ago
-
Fix examples typo. by bhenderson 12 years ago
-
Update README. by bhenderson 12 years ago
-
Set omnifunc default for mail file types. by bhenderson 12 years ago
-
Make query command default to mutt setting. by bhenderson 12 years ago
-
Fix examples typo. by bhenderson 12 years ago
-
Unexpose DefaultIfUnset utility function by Caio 12 years ago
-
Add initial version by Caio 12 years ago