aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorKillTheMule <KillTheMule@users.noreply.github.com>2016-08-12 12:00:36 +0200
committerKillTheMule <KillTheMule@users.noreply.github.com>2016-10-30 10:21:18 +0100
commit13841a56b4b4916a2f18e66f97cb6f5e55d40e53 (patch)
treed537cb37ba929552d8b2156288dac602458be27a /src/nvim/globals.h
parent6143cfdeec4e67cdf73879b92fe2a80b5b36bc1b (diff)
downloadrneovim-13841a56b4b4916a2f18e66f97cb6f5e55d40e53.tar.gz
rneovim-13841a56b4b4916a2f18e66f97cb6f5e55d40e53.tar.bz2
rneovim-13841a56b4b4916a2f18e66f97cb6f5e55d40e53.zip
Incsubsitution feature
Originally implemented by * Clement0 * DesbyP * aym7 * Adrey06 * Robinhola in #4811. Major reworkings and bug fixes by * bfredl Most tests suggested by ZyX-l, suggestions for improvements by oni-link.
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 87fb928b30..a5188e98d7 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -600,9 +600,10 @@ EXTERN int redraw_tabline INIT(= FALSE); /* need to redraw tabline */
* All buffers are linked in a list. 'firstbuf' points to the first entry,
* 'lastbuf' to the last entry and 'curbuf' to the currently active buffer.
*/
-EXTERN buf_T *firstbuf INIT(= NULL); /* first buffer */
-EXTERN buf_T *lastbuf INIT(= NULL); /* last buffer */
-EXTERN buf_T *curbuf INIT(= NULL); /* currently active buffer */
+EXTERN buf_T *firstbuf INIT(= NULL); // first buffer
+EXTERN buf_T *lastbuf INIT(= NULL); // last buffer
+EXTERN buf_T *curbuf INIT(= NULL); // currently active buffer
+EXTERN buf_T *livebuf INIT(= NULL); // buffer used for live actions
// Iterates over all buffers in the buffer list.
# define FOR_ALL_BUFFERS(buf) for (buf_T *buf = firstbuf; buf != NULL; buf = buf->b_next)