comparison runtime/doc/tagsrch.txt @ 15016:c338c91086b9 v8.1.0519

patch 8.1.0519: cannot save and restore the tag stack commit https://github.com/vim/vim/commit/f49cc60aa802862c595ff619dccc11271633a94b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 11 15:21:05 2018 +0100 patch 8.1.0519: cannot save and restore the tag stack Problem: Cannot save and restore the tag stack. Solution: Add gettagstack() and settagstack(). (Yegappan Lakshmanan, closes #3604)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Nov 2018 15:30:07 +0100
parents 2f7e67dd088c
children f8b0f1e42f2c
comparison
equal deleted inserted replaced
15015:abcfa9dcc93f 15016:c338c91086b9
176 commands explained above the tag stack will look like this: 176 commands explained above the tag stack will look like this:
177 177
178 # TO tag FROM line in file/text 178 # TO tag FROM line in file/text
179 1 1 main 1 harddisk2:text/vim/test 179 1 1 main 1 harddisk2:text/vim/test
180 2 1 FuncB 59 harddisk2:text/vim/src/main.c 180 2 1 FuncB 59 harddisk2:text/vim/src/main.c
181
182 The gettagstack() function returns the tag stack of a specified window. The
183 settagstack() function modifies the tag stack of a window.
181 184
182 *E73* 185 *E73*
183 When you try to use the tag stack while it doesn't contain anything you will 186 When you try to use the tag stack while it doesn't contain anything you will
184 get an error message. 187 get an error message.
185 188