Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion doc/nvim-java.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*nvim-java.txt* For Neovim >= 0.9.4 Last change: 2024 July 12
*nvim-java.txt* For Neovim >= 0.9.4 Last change: 2024 July 13

==============================================================================
Table of Contents *nvim-java-table-of-contents*
Expand Down Expand Up @@ -153,6 +153,7 @@ REFACTOR ~
- `JavaRefactorExtractConstant` - Create a constant from the value at cursor/selection
- `JavaRefactorExtractMethod` - Create a method from the value at cursor/selection
- `JavaRefactorExtractField` - Create a field from the value at cursor/selection
- `JavaRefactorConvertVariableToField` - Change a local variable to field


SETTINGS ~
Expand Down Expand Up @@ -280,6 +281,12 @@ REFACTOR ~
require('java').refactor.extract_field()
<

- `convert_variable_to_field` - Change a local variable to field

>lua
require('java').refactor.convert_variable_to_field()
<


SETTINGS ~

Expand Down