PHP WordPress Blog/CMS · This is a NetBeans plugin for WordPress.
Group: com.junichi11.netbeans.modules - All Dependencies
Vagrant Support · This plugin provides support for Vagrant.
textlint Support · This plugin provides support for textlint. <h3>What’s the textlint?</h3> <p>See <a href="https://github.com/textlint/textlint">https://github.com/textlint/textlint</a></p> <h3>Usage</h3> <h4>Install textlint and rules</h4> <p>Of course, it assumes that nodejs and npm are installed.</p> <p>e.g.</p> <pre><code>$ mkdir txtlint $ cd txtlint $ npm init $ npm install textlint --save-dev $ npm install textlint-rule-max-ten textlint-rule-spellcheck-tech-word textlint-rule-no-mix-dearu-desumasu --save-dev </code></pre> <h4>Create .textlintrc</h4> <pre><code>$ touch .textlintrc </code></pre> <pre><code class="json">{ "rules": { "max-ten": { "max": 3 }, "spellcheck-tech-word": true, "no-mix-dearu-desumasu": true } } </code></pre> <p>You can also set parameters to Options (see below).</p> <h4>Set textlint and .textlintrc paths</h4> <p>Set paths to the Options (see below).</p> <p>e.g.</p> <ul> <li>textlint Path: /path/to/txtlint/node_modules/.bin/textlint (textlint.cmd in Windows)</li> <li>.textlintrc Path: /path/to/textlint/.textlintrc</li> </ul> <h4>Open Action Items window</h4> <ul> <li>Click Window > Action Items.</li> <li>Click “Show action items for currently edited file only” icon.</li> <li>Open your markdown or text file.</li> </ul> <h3>Options</h3> <p>Tools > Options > Editor > textlint</p> <ul> <li>textlint Path: Absolute path to textlint</li> <li>.textlintrc Path: Absolute path to .textlintrc</li> <li>Options : You can set options for the textlint command</li> <li>Enable in HTML files: To use the html plugin, you can check this</li> <li>Refresh on Save: To scan the document on save, you can check this (Checked by default)</li> <li>Show Annotations: To show annotations in the glyph gutter, you can check this (Checked by default)</li> </ul> <h3>Actions</h3> <h4>Fix</h4> <p>You have to save your file before you run this action.<br/> If there is a fixable rule’s error, you can fix it. Right-click an item > Click <code>Fix</code>.<br/> To refresh items, your document is saved once.</p> <h4>Fix All</h4> <p>You have to save your file before you run this action.<br/> If there are fixable rule’s errors, you can fix them. Right-click an item > Click <code>Fix All</code>.<br/> This action runs <code>textlint --fix</code> command.</p> <h4>Refresh</h4> <p>You can refresh results forcibly by the following action: Right-click your editor > Click "textlint Refresh".</p> <p>You can also set the shortcut key(Tools > Options > Keymap). </p> <h3>NOTE</h3> <ul> <li>The plugin scans only current file.</li> <li>The plugin does not refresh results automatically. Please save your file or run the refresh action.</li> <li>Use <code>UTF-8</code> as file encoding and <code>LF</code> as line endings.</li> <li>This plugin may not work properly in Windows. (Please try to check above.)</li> <li>If you cannot get expected results, just try to run the <code>textlint</code> commands once in your CLI.</li> </ul>
Rainbow Braces · Rainbow Parentheses/Brackets/Braces for NetBeans
NetBeans PHP Enhancements · Support for some small features for PHP.
NetBeans PHP CS Fixer · This plugin provides support for the PHP CS Fixer.
NetBeans No Extension MIME Resolver Plugin · Return a proper mime type from a shebang line or modeline of a file if the file extension is empty. (e.g. myscript)
NetBeans No Newline Resolver · This plugin adds a newline to EOF on save if it doesn't exist.
NetBeans gitignore.io Plugin · Support for gitignore.io. This plugin generates .gitignore file to your project node.
GitHub Issues Support · This plugin provides support for GitHub Issue Tracker. <h2>Features</h2> <ul> <li>Create a new issue</li> <li>Edit an issue</li> <li>Create queries</li> <li>Edit an issue comment</li> <li>Delete an issue comment</li> <li>Create a new pull request</li> <li>Change an existing issue to a pull request</li> <li>Search issues with issue number or keywords</li> <li>Create a new label</li> <li>Create a new milestone</li> <li>Set a schedule for an issue</li> </ul>
NetBeans Encoding Plugin · This plugin opens/saves a file with a specified encoding.
Color Codes Preview · Show color codes preview per line in a sidebar area of an editor. <h2>Disable / Enable</h2> Check/Uncheck View > Show Colors <h2>Supported color patterns</h2> <ul> <li>Hex color code (e.g. #ffffff, #000)</li> <li>Css rgb/rgba values (e.g. rgb(0,0,0), rgba(255, 255, 255, 0.8))</li> <li>Css hsl/hsla values (e.g. hsl(0, 100%, 50%), hsla(120, 100%, 50%, 0.5))</li> <li>Named colors (e.g. red, blue)</li> <li>Java Color class (e.g. Color.black, new Color(100, 100, 100))</li> </ul> <h2>Multiple colors</h2> <ul> <li>Show top two colors in a sidebar if there are multiple colors in a line.</li> <li>If you want to check all colors, please click a specific rectangle. They will be shown as a list.</li> </ul> <h2>Change a color using the color chooser</h2> <ul> <li>Click a colored rectangle</li> <li>Click a color value of a list</li> <li>Select a new color in the color chooser</li> <li>An old color value will be changed to new one with the same format</li> </ul> <h2>Generate color codes</h2><p>You can generate color codes via a code generator(<kbd>Alt</kbd> + <kbd>Ins</kbd>).</p> <ol> <li>Run a code generator(Alt + Ins)</li> <li>Choose <code>Color...</code></li> <li>Choose format you expect (e.g. <code>new Color(r, g, b)</code>)</li> <li>Choose a color</li> <li>Click the OK button</li> <li>A color code is generated at the caret position</li> </ol> <h2>Options</h2> Tools > Options > Miscellaneous > Color Codes Preview <h3>Regex for enabled mime-types for Hex and CSS colors</h3> Default value is `^text/(x-)?(css|less|sass|scss)$`. If you would like to disable/enable some mime-types, please change the default regex. This pattern is used when the plugin checks a mime-type. <h3>Named Colors</h3> This option is `false` by default. If you would like to show named colors, please check it. <h2>NOTE</h2> <ul> <li>If you would like to show colors of `Color.decode(<hex>)` e.g. `Color.decode(#000000)`, Please add `java` to "Regex for enabled mime-types" of Hex and CSS e.g. (`^text/(x-)?(css|less|sass|scss|java)$`)</li> <li>Colors may be shown if they are not color codes. e.g. "#feature" contains #fea. This plugin recognizes it as a hex color code.</li> <li>If you use the GTK Look and Feel, you cannot change an alpha value in the color chooser.</li> <li>Hsl or hsla color values may not be changed correctly when you use the color chooser. (There may be 1% errors.)</li> </ul>
NetBeans Change Line Endings on Save Plugin · This plugin changes line endings of a file to the specified line endings when the file is saved.
NetBeans CakePHP3/4 Framework · This plugin provides support for CakePHP3/4.
NetBeans CakePHP Framework · This plugin provides support for CakePHP.
Backlog Support · This plugin provides support for <a href ="http://backlogtool.com/?lang=1">backlog</a>. <h2>Features</h2> <ul> <li>Add an issue</li> <li>Update an issue</li> <li>Create queries</li> <li>Find issues</li> <li>Schedules</li> </ul> <h2>Resources</h2> <ul> <li><a href="https://github.com/junichi11/netbeans-backlog-plugin">https://github.com/junichi11/netbeans-backlog-plugin</a></li> <li><a href="https://github.com/nulab/backlog4j">Backlog4j</a></li> </ul>
HTML Enhancements · Support for some small features for HTML.
NetBeans Sort Line Tools · NetBeans plugin which adds a toolbar with texteditor operations for sorting.