From c92d8ec67677168d8ff5ef6a7a9ddc506c286e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Tue, 14 Jul 2015 20:41:19 -0400 Subject: [PATCH 1/7] Updated the README to describe this fork --- README | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README b/README index 56bf86f..6e83360 100644 --- a/README +++ b/README @@ -1,3 +1,10 @@ +# A Fork of [vim-scripts/taglist.vim](https://github.com/vim-scripts/taglist.vim) + +This fork supports the following additional features: ++ Open Taglist Window within an existing vertical split + +## The rest are from the original fork: + This is a mirror of http://www.vim.org/scripts/script.php?script_id=273 The "Tag List" plugin is a source code browser plugin for Vim and From 4756c08d0089d2cd7de89d59ad2e0cf8549e746a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Tue, 14 Jul 2015 20:42:04 -0400 Subject: [PATCH 2/7] Added support for opening TagList in current vsplit --- plugin/taglist.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/taglist.vim b/plugin/taglist.vim index 59901f6..45ad380 100644 --- a/plugin/taglist.vim +++ b/plugin/taglist.vim @@ -1287,6 +1287,10 @@ function! s:Tlist_Window_Create() let win_dir = 'botright' " Horizontal window height let win_size = g:Tlist_WinHeight + elseif g:Tlist_Use_Split_Window + " Open the window in a horizontal split of current window + let win_dir = 'abo' + let win_size = g:Tlist_WinWidth else if s:tlist_winsize_chgd == -1 " Open a vertically split window. Increase the window size, if From 3cb906dc0782d547406351d9eb7816be760ef59b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Tue, 14 Jul 2015 20:44:46 -0400 Subject: [PATCH 3/7] Renamed the README to MD --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From e654e826e75de43564b9da92f2e6ccd8d9b97a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Tue, 14 Jul 2015 22:25:12 -0400 Subject: [PATCH 4/7] Changed the win_dir option for the horz split --- plugin/taglist.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/taglist.vim b/plugin/taglist.vim index 45ad380..dec8219 100644 --- a/plugin/taglist.vim +++ b/plugin/taglist.vim @@ -1289,8 +1289,8 @@ function! s:Tlist_Window_Create() let win_size = g:Tlist_WinHeight elseif g:Tlist_Use_Split_Window " Open the window in a horizontal split of current window - let win_dir = 'abo' - let win_size = g:Tlist_WinWidth + let win_dir = 'rightbelow' + let win_size = g:Tlist_WinHeight else if s:tlist_winsize_chgd == -1 " Open a vertically split window. Increase the window size, if From 3895bcd39761e3a174e6378b25ae4d3fc229640b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Wed, 15 Jul 2015 15:52:54 -0400 Subject: [PATCH 5/7] Added docs for the new option in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6e83360..1f17d21 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ This fork supports the following additional features: + Open Taglist Window within an existing vertical split ++ let Tlist_Use_Split_Window = 1 ## The rest are from the original fork: From b04f571423084adec04934c3ebab1f1da51a83a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Wed, 15 Jul 2015 15:55:43 -0400 Subject: [PATCH 6/7] Restored the README to original state preparing for a Pull Req --- README.md | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 1f17d21..0000000 --- a/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# A Fork of [vim-scripts/taglist.vim](https://github.com/vim-scripts/taglist.vim) - -This fork supports the following additional features: -+ Open Taglist Window within an existing vertical split -+ let Tlist_Use_Split_Window = 1 - -## The rest are from the original fork: - -This is a mirror of http://www.vim.org/scripts/script.php?script_id=273 - -The "Tag List" plugin is a source code browser plugin for Vim and -provides an overview of the structure of source code files and allows -you to efficiently browse through source code files for different -programming languages. You can visit the taglist plugin home page for -more information: - - http://vim-taglist.sourceforge.net - -You can subscribe to the taglist mailing list to post your questions -or suggestions for improvement or to report bugs. Visit the following -page for subscribing to the mailing list: - - http://groups.yahoo.com/group/taglist/ - -For more information about using this plugin, after installing the -taglist plugin, use the ":help taglist" command. From 0c8d4d55a088582a6afe9ade505c46754ac87fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Saleme=CC=81?= Date: Wed, 15 Jul 2015 15:56:17 -0400 Subject: [PATCH 7/7] Restored the README to original state preparing for a Pull Req --- README | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..56bf86f --- /dev/null +++ b/README @@ -0,0 +1,18 @@ +This is a mirror of http://www.vim.org/scripts/script.php?script_id=273 + +The "Tag List" plugin is a source code browser plugin for Vim and +provides an overview of the structure of source code files and allows +you to efficiently browse through source code files for different +programming languages. You can visit the taglist plugin home page for +more information: + + http://vim-taglist.sourceforge.net + +You can subscribe to the taglist mailing list to post your questions +or suggestions for improvement or to report bugs. Visit the following +page for subscribing to the mailing list: + + http://groups.yahoo.com/group/taglist/ + +For more information about using this plugin, after installing the +taglist plugin, use the ":help taglist" command.