aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Improve documentation of `easytags_dynamic_files' optionPeter Odding2015-04-141-1/+4
| | | | | | See also issue 92 and issue 116 on GitHub: - https://github.com/xolox/vim-easytags/issues/92 - https://github.com/xolox/vim-easytags/issues/116
* Merge pull request #117: Fix typo in READMEPeter Odding2015-04-141-1/+1
|
* Improve easytags_auto_{update,highlight} option documentationPeter Odding2015-04-021-0/+4
| | | | | | | | | | | | | Try to prevent confusion like in issue #92 on GitHub by @oryband: I had to comment out the auto_update/highlight lines in order for easytags to create the local .tags file. I thought that these options were meant only for on_cursorhold. The documentation regarding this is quite ambiguous: If on_cursorhold is off, why does auto_update/highlight also apply to events? Events aren't auto - I set them manually. For details: https://github.com/xolox/vim-easytags/issues/92
* Refer from easytags_always_enabled to easytags_async in README.mdPeter Odding2015-04-021-1/+1
|
* Update installation instructionsPeter Odding2015-04-021-11/+2
|
* Merge pull request #111: Give precedence to dynamic files over storage by ↵Peter Odding2015-03-151-2/+2
| | | | | | | | | | | | | | | | | | | filetype I rewrote quite a bit of code in this pull request but I didn't change the behavior introduced by @cornerman (at least it was not my intention to do so). The main reason for rewriting was that the name xolox#easytags#get_global_tagsfile() "was a lie" because it could select either a file type specific tags files or the global tags file. I like functions whose name captures what they do so had to change things around in order to merge pull request 111 without having that name bother me :-). See also pull request 111 on GitHub: https://github.com/xolox/vim-easytags/pull/111 Which came forth from issue 102: https://github.com/xolox/vim-easytags/issues/102
* Add missing link to README (issue #98)Peter Odding2014-11-211-0/+1
|
* Improve handling & docs of g:easytags_opts option (issue #98)Peter Odding2014-11-211-1/+5
|
* Add g:easytags_opts option (issue #98)Peter Odding2014-11-131-0/+4
| | | | | See also issue #98 on GitHub: https://github.com/xolox/vim-easytags/issues/98
* Support for Perl highlighting (thanks to Jessica Kathleen McIntosh, see ↵Peter Odding2014-09-171-2/+3
| | | | | | | issue #97) See issue #97 on GitHub: https://github.com/xolox/vim-easytags/issues/97
* Add g:easytags_suppress_report optionblukat292014-08-241-0/+6
|
* Use timers to identify slow[est] parts of vim-easytagsPeter Odding2014-07-191-6/+17
| | | | | | | See also https://github.com/xolox/vim-easytags/pull/80 where I suggested to add accurate timing to the vim-easytags plug-in. Here it is :-). This is still quite rudimentary but it's already an improvement over what was there before!
* Support for keyword based syntax highlighting (much faster)Peter Odding2014-07-091-0/+12
| | | | | | | | | | | See the following issues on GitHub: - https://github.com/xolox/vim-easytags/issues/68 - https://github.com/xolox/vim-easytags/pull/80 Please note that right now this 'feature' is not integrated with the "accelerated Python syntax highlighting" feature, because I'm considering ripping that out and replacing it with a *fast* Vim script implementation (if I can build one :-).
* Credit Ingo for his work, thank other contributors as wellPeter Odding2014-07-081-2/+4
|
* Merge pull request #84: Asynchronous tags file updates! \o/Peter Odding2014-07-081-12/+12
|\ | | | | | | | | | | | | | | | | | | | | This is part 1/2 of speeding up the vim-easytags plug-in. Refer to the pull request for details: https://github.com/xolox/vim-easytags/pull/84 In part 2/2 I want to speed up the dynamic syntax highlighting. Potentially related open issues on GitHub (probably missed a few): - https://github.com/xolox/vim-easytags/issues/32 - https://github.com/xolox/vim-easytags/issues/41 - https://github.com/xolox/vim-easytags/issues/68
| * Support for synchronous + asynchronous tags file updates (huge refactoring)Peter Odding2014-06-221-12/+10
|/ | | | | See also pull request #49 for my previous and failed attempt: https://github.com/xolox/vim-easytags/pull/49
* Merge pull request #78: Bug fix for accelerated highlighting using PythonPeter Odding2014-06-161-2/+2
|
* Merge pull request #59: Java interfaces supportPeter Odding2013-07-161-1/+1
| | | | | See pull request #59 on GitHub: https://github.com/xolox/vim-easytags/pull/59
* Improve handling of ignored syntax groups (issue #57)Peter Odding2013-06-201-4/+0
|
* Document vim-misc as external dependency (needs to be installed separately ↵Peter Odding2013-05-251-2/+13
| | | | from now on)
* Document the g:easytags_events option (issue #46)Peter Odding2013-05-201-1/+11
| | | | | Issue #46 on GitHub: https://github.com/xolox/vim-easytags/issues/46
* Document BufWritePost example, improve documentation structure (issue #46)Peter Odding2013-05-191-9/+21
| | | | | Issue #46 on GitHub: https://github.com/xolox/vim-easytags/issues/46
* Add g:easytags_updatetime_warn option, improve documentation (issue #47)Peter Odding2013-05-191-2/+15
| | | | | Issue #47 on GitHub: https://github.com/xolox/vim-easytags/issues/47
* Don't try to use dynamic tags files for non-writable directories (issue #29)Peter Odding2013-04-301-1/+1
| | | | | This fixes the problem described here: https://github.com/xolox/vim-easytags/issues/29
* Merge pull request #36Peter Odding2013-04-211-1/+1
|\
* | Workaround low 'updatetime' intelligentlyPeter Odding2013-04-191-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should hopefully resolve the following issues and pull requests: #31, #33, #42. I tried several of their suggestions in Vim 7.2 & 7.3 but it didn't work as it should IMHO. All of the issues and pull requests seem to imply that CursorHold events fire continuously when you set a low enough updatetime, but in my testing on Vim 7.2 and 7.3 this is not true. The event fires once, then Vim waits for user input before any new events fire. I'm not sure exactly what user input is required; moving the text cursor is not always enough but mode switching is. So what happens (in my testing) with all of the proposed solutions is that you stop typing for 'updatetime' milliseconds, the event fires, the plug-in simply increments or decrements a counter and then Vim just sits there doing absolutely nothing expect blinking the cursor... What I'm now trying instead is to remember the last time the plug-in was executed (the result of localtime()) and not acting on the CursorHold event until the following condition holds true: localtime() > (last_automatic_run + (easytags_updatetime_min/1000)) I hope this provides a reliable solution. In any case it should be better than the previous annoying behavior :-)
* | Move g:easytags_languages documentation to README.mdPeter Odding2013-04-191-0/+21
|/ | | | | Integration of pull request #40: https://github.com/xolox/vim-easytags/pull/40
* Make list of ignored syntax groups configurablePeter Odding2011-10-291-0/+4
| | | | | | | | While trying to fix issue #20 I decided to refactor the code that handles ignored syntax groups: Previously the list of excluded groups was hard coded in two places, now it's a configuration option. Then it turned out that including shFunction* in the list of excluded syntax groups didn't fix the reported issue...
* Bump version + minor updates for Awk, Shell & TCL supportPeter Odding2011-10-011-5/+8
|
* New g:easytags_updatetime_autodisable option (issue #17, reported by ↵Peter Odding2011-09-171-0/+10
| | | | Strahinja Marković)
* Improve easytags_dynamic_files implementation (best of both worlds?)Peter Odding2011-09-051-6/+5
| | | | | | | | | Some users want the plug-in to use existing project specific tags files but fall back to the global tags file or a file type specific tags file if a project specific tags file does not exist. Other users want the plug-in to automatically create project specific tags files. Both are reasonable options to have. I hope with this change we can all be happy :-) (see also issue #15 and issue #16 on GitHub).
* Make "easytags_dynamic_files" create missing tags filesPeter Odding2011-08-311-4/+4
| | | | | Suggested by Strahinja Marković in GitHub issue #15: https://github.com/xolox/vim-easytags/issues/15
* Explain how to setup custom ctags command line optionsPeter Odding2011-07-091-0/+6
|
* Fix broken link in READMEPeter Odding2011-06-271-1/+1
|
* Change inline hyper links in README to reference stylePeter Odding2011-06-271-23/+45
| | | | | | | | | I use Vim's new conceal feature while editing Markdown* to conceal link locations however Vim doesn't reflow physical lines spanning multiple screen lines which means lines that contains (long) hyper links become very ragged. This distracts (too much) from actually reading the text. * http://groups.google.com/group/vim_dev/browse_frm/thread/eb05308417b17a5b/
* Support buffer local variants of most optionsPeter Odding2011-06-271-8/+8
|
* Add easytags_auto_update/auto_highlight optionsPeter Odding2011-06-261-0/+20
|
* Allow enabling both dynamic and file type tags filesKenny Stuart2011-06-241-0/+4
| | | | | | | | When both options are enabled, project specific tags files take precedence if they exist and are writable, otherwise a file type tags file is used. (Stuart wrote this code, Peter added the check for supported file types)
* Remove duplicate tag from Vim help filePeter Odding2011-06-171-1/+1
|
* Documentation bug fix (it's getting late..)Peter Odding2011-06-141-1/+1
|
* 2x faster syntax highlighting using Python Interface to Vim :-)Peter Odding2011-06-141-4/+20
|
* :TagsByFileType to create filetype specific tagsfiles from global tagsfilePeter Odding2011-06-131-0/+2
|
* Basic support for file type specific tags files!Peter Odding2011-06-131-0/+6
|
* Dynamic highlighting for Ruby source code (issue #9)Peter Odding2011-05-231-1/+2
|
* Enable updating of project specific tags filesPeter Odding2011-05-021-3/+15
|
* Improve submodule config, minor README updatesPeter Odding2011-04-111-2/+2
| | | | | | | | | | | | | | | | | | * In response to issue 5 [1] I've changed the git submodule config to references GitHub using HTTPS instead of the git protocol, this should make it easier for people behind firewalls to clone the repository. * In response to an issue [2] reported against one of my other Vim plug-ins I've changed the link to the ZIP archive to include the ".zip" extension. The old links without extensions will keep working so as not to break links in older README files. * The link with the text "CTRL-]" broke some Markdown implementations so I changed the text to use an HTML entity instead of a plain "]". [1] https://github.com/xolox/vim-easytags/issues/5 [2] https://github.com/xolox/vim-session/issues/5
* Add g:easytags_suppress_ctags_warning optionDaniel Hahler2011-03-191-0/+6
| | | | When set and != 0 this will suppress the ctags warning on startup.
* Document the highlighting groups used by the plug-inPeter Odding2011-02-241-1/+15
|
* Added caveat about Cygwin, updated to-do listPeter Odding2011-02-241-0/+4
|
* Don't highlight tags inside #include <...>Peter Odding2010-11-201-1/+1
|