Mercurial > vim
annotate src/os_haiku.h @ 34775:e0059b2d4e2b
runtime(java): Improve the matching of contextual keywords
Commit: https://github.com/vim/vim/commit/5ccdcc482e299609ae8852a75b22190e38b9b5df
Author: Aliaksei Budavei <0x000c70@gmail.com>
Date: Thu Apr 4 21:51:18 2024 +0200
runtime(java): Improve the matching of contextual keywords
- Recognise a _record_ contextual keyword.
- Recognise _non-sealed_, _sealed_, and _permits_ contextual
keywords.
- Admit _$_ to keyword characters.
- Group _abstract_, _final_, _default_, _(non-)sealed_
(apart from _(non-)sealed_, the incompossibility of these
modifiers calls for attention).
- Remove another _synchronized_ keyword redefinition.
I have also replaced a function with an expression. Before
patch 8.1.0515, it should have been declared :function! to
work with repeatable script sourcing; there is less to worry
about with an expression.
References:
https://openjdk.org/jeps/395 (Records)
https://openjdk.org/jeps/409 (Sealed Classes)
https://docs.oracle.com/javase/specs/jls/se21/html/jls-3.html#jls-3.8
closes: #14403
Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 04 Apr 2024 22:00:05 +0200 |
parents | 22f0dda71638 |
children |
rev | line source |
---|---|
19526 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * Haiku port by Siarzhuk Zharski | |
5 * | |
6 * Do ":help uganda" in Vim to read copying and usage conditions. | |
7 * Do ":help credits" in Vim to see a list of people who contributed. | |
8 */ | |
9 | |
10 /* | |
11 * os_haiku.h | |
12 */ | |
13 | |
14 #define USE_TERM_CONSOLE | |
15 | |
16 #define USR_VIM_DIR "$BE_USER_SETTINGS/vim" | |
17 | |
18 #define USR_EXRC_FILE USR_VIM_DIR "/exrc" | |
19 #define USR_EXRC_FILE2 USR_VIM_DIR "/vim/exrc" | |
20 #define USR_VIMRC_FILE USR_VIM_DIR "/vimrc" | |
21 #define USR_VIMRC_FILE2 USR_VIM_DIR "/vim/vimrc" | |
22 #define USR_GVIMRC_FILE USR_VIM_DIR "/gvimrc" | |
23 #define USR_GVIMRC_FILE2 USR_VIM_DIR "/vim/gvimrc" | |
24 #define VIMINFO_FILE USR_VIM_DIR "/viminfo" | |
25 | |
26 #ifdef RUNTIME_GLOBAL | |
27 # ifdef RUNTIME_GLOBAL_AFTER | |
28 # define DFLT_RUNTIMEPATH USR_VIM_DIR "," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER "," USR_VIM_DIR "/after" | |
29 # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER | |
30 # else | |
31 # define DFLT_RUNTIMEPATH USR_VIM_DIR "," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after," USR_VIM_DIR "/after" | |
32 # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after" | |
33 # endif | |
34 #else | |
35 # define DFLT_RUNTIMEPATH USR_VIM_DIR ",$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after," USR_VIM_DIR "/after" | |
36 # define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" | |
37 #endif |