Skip to content

Commit eed9e4e

Browse files
s1n7axgithub-actions[bot]
authored andcommitted
chore(doc): automatic vimdoc update
1 parent aabca01 commit eed9e4e

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

doc/nvim-java.txt

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*nvim-java.txt* For Neovim >= 0.9.4 Last change: 2024 July 10
1+
*nvim-java.txt* For Neovim >= 0.9.4 Last change: 2024 July 12
22

33
==============================================================================
44
Table of Contents *nvim-java-table-of-contents*
@@ -61,19 +61,22 @@ HOW TO INSTALL *nvim-java-how-to-install*
6161
:small_orange_diamond:details ~
6262

6363

64-
Q & A ~
64+
STARTER CONFIGS (RECOMMEND FOR NEWBIES) ~
6565

66-
If you face any issues, check our Q & A
67-
<https://github.com/nvim-java/nvim-java/wiki/Q-&-A> wiki to see if that helps
66+
Following are forks of original repositories pre-configured for java. If you
67+
don’t know how to get started, use one of the following to get started.
6868

69+
- LazyVim <https://github.com/nvim-java/starter-lazyvim>
70+
- Kickstart <https://github.com/nvim-java/starter-kickstart>
6971

70-
DISTRIBUTIONS & TEMPLATES ~
7172

72-
- Lazyvim <https://github.com/nvim-java/nvim-java/wiki/Lazyvim>
73+
DISTRIBUTION SPECIFIC INSTRUCTIONS ~
74+
75+
- LazyVim <https://github.com/nvim-java/nvim-java/wiki/Lazyvim>
7376
- Kickstart <https://github.com/nvim-java/nvim-java/wiki/Kickstart>
7477

7578

76-
CUSTOM ~
79+
CUSTOM CONFIGURATION INSTRUCTIONS ~
7780

7881
- Install the plugin
7982

@@ -144,11 +147,12 @@ PROFILES ~
144147

145148
REFACTOR ~
146149

147-
- `JavaRefactorExtractVariable` - Create a variable from value at cursor
150+
- `JavaRefactorExtractVariable` - Create a variable from value at cursor/selection
148151
- `JavaRefactorExtractVariableAllOccurrence` - Create a variable for all
149-
occurrences from value at cursor
150-
- `JavaRefactorExtractConstant` - Create a constant from the value at cursor
151-
- `JavaRefactorExtractMethod` - Create method from the value at cursor
152+
occurrences from value at cursor/selection
153+
- `JavaRefactorExtractConstant` - Create a constant from the value at cursor/selection
154+
- `JavaRefactorExtractMethod` - Create a method from the value at cursor/selection
155+
- `JavaRefactorExtractField` - Create a field from the value at cursor/selection
152156

153157

154158
SETTINGS ~
@@ -245,31 +249,37 @@ PROFILES ~
245249

246250
REFACTOR ~
247251

248-
- `extract_variable` - Create a variable from value at cursor
252+
- `extract_variable` - Create a variable from value at cursor/selection
249253

250254
>lua
251255
require('java').refactor.extract_variable()
252256
<
253257

254258
- `extract_variable_all_occurrence` - Create a variable for all occurrences from
255-
value at cursor
259+
value at cursor/selection
256260

257261
>lua
258262
require('java').refactor.extract_variable_all_occurrence()
259263
<
260264

261-
- `extract_constant` - Create a constant from the value at cursor
265+
- `extract_constant` - Create a constant from the value at cursor/selection
262266

263267
>lua
264268
require('java').refactor.extract_constant()
265269
<
266270

267-
- `extract_method` - Create method from the value at cursor
271+
- `extract_method` - Create method from the value at cursor/selection
268272

269273
>lua
270274
require('java').refactor.extract_method()
271275
<
272276

277+
- `extract_field` - Create a field from the value at cursor/selection
278+
279+
>lua
280+
require('java').refactor.extract_field()
281+
<
282+
273283

274284
SETTINGS ~
275285

0 commit comments

Comments
 (0)