From 3b934f6e0d0d4a44875024713dd0aeefdcdd206b Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Tue, 20 Jul 2010 12:47:39 +0200 Subject: Another bug fix for the broken :set tags= command Previously* I fixed a bug where easytags.vim failed to register the global tags file created by the plug-in with Vim, because even though the &tags option was set by the plug-in, Vim would refuse to acknowledge the new tags file, i.e. tagfiles() == []. The fix then was to change :let &tags= to :set tags= which apparently has a different implementation from :let &tags=?! I assumed this fix would be valid for both Windows and UNIX, but apparently this still doesn't work on Windows! There we actually have to use feedkeys() to convince Vim to change the &tags option... What a hack! :-( BTW I also fixed an embarrassing typo in the initialization code. * Bug fix for strange "E433: No tags file" problem: http://github.com/xolox/vim-easytags/commit/4fef0c17749e687d670b2e9e4e429022ec4c1055 --- TODO.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'TODO.md') diff --git a/TODO.md b/TODO.md index 798a258..4bc7b19 100644 --- a/TODO.md +++ b/TODO.md @@ -1,5 +1,7 @@ # Long term plans + * Automatically index C headers when /usr/include/$name.h exists? + * Integration with my unreleased project plug-in so that when you edit any file in a project, all related files are automatically scanned for tags? -- cgit v1.2.3