diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-11-19 22:57:13 +0000 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-11-19 22:57:13 +0000 |
commit | 9be89f131f87608f224f0ee06d199fcd09d32176 (patch) | |
tree | 11022dcfa9e08cb4ac5581b16734196128688d48 /src/nvim/window.h | |
parent | ff7ed8f586589d620a806c3758fac4a47a8e7e15 (diff) | |
parent | 88085c2e80a7e3ac29aabb6b5420377eed99b8b6 (diff) | |
download | rneovim-9be89f131f87608f224f0ee06d199fcd09d32176.tar.gz rneovim-9be89f131f87608f224f0ee06d199fcd09d32176.tar.bz2 rneovim-9be89f131f87608f224f0ee06d199fcd09d32176.zip |
Merge remote-tracking branch 'upstream/master' into mix_20240309
Diffstat (limited to 'src/nvim/window.h')
-rw-r--r-- | src/nvim/window.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/nvim/window.h b/src/nvim/window.h index d20b799e20..9618ff1c2a 100644 --- a/src/nvim/window.h +++ b/src/nvim/window.h @@ -8,17 +8,6 @@ #include "nvim/option_defs.h" // IWYU pragma: keep #include "nvim/types_defs.h" // IWYU pragma: keep -/// Values for file_name_in_line() -enum { - FNAME_MESS = 1, ///< give error message - FNAME_EXP = 2, ///< expand to path - FNAME_HYP = 4, ///< check for hypertext link - FNAME_INCL = 8, ///< apply 'includeexpr' - FNAME_REL = 16, ///< ".." and "./" are relative to the (current) - ///< file instead of the current directory - FNAME_UNESC = 32, ///< remove backslashes used for escaping -}; - /// arguments for win_split() enum { WSP_ROOM = 0x01, ///< require enough room |