Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Minor: Fix inconsistent naming of menu items under "Refactor > Extract"
 #KT-7609 Fixed
  • Loading branch information
asedunov committed May 21, 2015
1 parent 1b6475c commit 64892e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions idea/src/META-INF/plugin.xml
Expand Up @@ -97,18 +97,18 @@
</action>

<action id="ExtractFunction" class="org.jetbrains.kotlin.idea.refactoring.introduce.extractFunction.ExtractFunctionAction"
text="Extract _Function..." use-shortcut-of="ExtractMethod">
text="_Function..." use-shortcut-of="ExtractMethod">
<add-to-group group-id="IntroduceActionsGroup" anchor="after" relative-to-action="ExtractMethod"/>
</action>

<action id="IntroduceProperty" class="org.jetbrains.kotlin.idea.refactoring.introduce.introduceVariable.IntroducePropertyAction"
text="Introduce _Property..." use-shortcut-of="IntroduceField">
text="P_roperty..." use-shortcut-of="IntroduceField">
<add-to-group group-id="IntroduceActionsGroup" anchor="after" relative-to-action="IntroduceField"/>
</action>

<action id="IntroduceLambdaParameter"
class="org.jetbrains.kotlin.idea.refactoring.introduce.introduceParameter.IntroduceLambdaParameterAction"
text="Introduce Lambda Parameter...">
text="La_mbda Parameter...">
<keyboard-shortcut keymap="$default" first-keystroke="control shift P"/>
<add-to-group group-id="IntroduceActionsGroup" anchor="after" relative-to-action="IntroduceParameter"/>
</action>
Expand Down Expand Up @@ -138,7 +138,7 @@
</action>

<action id="ExtractFunctionToScope" class="org.jetbrains.kotlin.idea.refactoring.introduce.extractFunction.ExtractFunctionToScopeAction"
text="Extract Function to _Scope...">
text="Function to _Scope...">
<keyboard-shortcut keymap="$default" first-keystroke="control alt shift M"/>
<add-to-group group-id="IntroduceActionsGroup" anchor="after" relative-to-action="ExtractFunction"/>
</action>
Expand Down

0 comments on commit 64892e7

Please sign in to comment.