Skip to content

Commit cda346a

Browse files
committed
Merge branch 'nb82dev'
2 parents db140db + 5b46f16 commit cda346a

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ This is very simple feature. If you input a plugin name (plugin_name)...
136136
This feature is available on the parameters of following functions:
137137
- add_filter, remove_filter
138138
- add_action, remove_action
139+
- add_shortcode
140+
- register_activation_hook, register_deactivation_hook
139141

140142
Hold down Ctrl key on first or second parameter. If text color is changed to blue, Click there.
141143
Then caret position go to function. (first parameter is available when there are the same function names as parameter name : in this case, caret doesn't necessarily go to right position)

src/org/netbeans/modules/php/wordpress/editor/navi/WordPressHyperlinkProviderExt.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ public class WordPressHyperlinkProviderExt implements HyperlinkProviderExt {
7878
"add_filter", // NOI18N
7979
"remove_filter", // NOI18N
8080
"add_action", // NOI18N
81-
"remove_action"); // NOI18N
81+
"remove_action", // NOI18N
82+
"register_activation_hook", // NOI18N
83+
"register_deactivation_hook", // NOI18N
84+
"add_shortcode"); // NOI18N
8285
private String target;
8386
private int startOffset;
8487
private int endOffset;

0 commit comments

Comments
 (0)