diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-31 17:49:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-31 17:49:30 +0200 |
commit | d881b516da0184052d2f9d33c3f72c5c014316bd (patch) | |
tree | faadc52b11a24da6c1ba2b147fd1f7a061198e88 /src/structs.h | |
parent | e023e88bed3f2e0a7ea4cf10cac2de80bc9c271c (diff) | |
download | vim-git-d881b516da0184052d2f9d33c3f72c5c014316bd.tar.gz |
patch 8.2.0864: pragmas are indented all the way to the leftv8.2.0864
Problem: Pragmas are indented all the way to the left.
Solution: Add an option to indent progmas like normal code. (Max Rumpf,
closes #5468)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index f67aba33f..9968e9205 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2803,6 +2803,7 @@ struct file_buffer int b_ind_cpp_namespace; int b_ind_if_for_while; int b_ind_cpp_extern_c; + int b_ind_pragma; #endif linenr_T b_no_eol_lnum; // non-zero lnum when last line of next binary |