ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Auto​PHPDollar

by graarh ST2

Type the variable name without "$", and this plugin add it.

Details

  • 2015.06.08.19.21.06
  • github.​com
  • github.​com
  • 9 years ago
  • 1 hour ago
  • 12 years ago

Installs

  • Total 7K
  • Win 4K
  • Mac 1K
  • Linux 1K
May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Synopsis

This is a Sublime Text 2 plugin.

Add “$” symbol before PHP variable name

AutoPHPDollar automatically insters “$” character before variables. Type the variable name without “$”, and this plugin add it.

Installation

Go to your Packages subdirectory under ST2's data directory:

  • Windows: %APPDATA%\Sublime Text 2
  • OS X: ~/Library/Application Support/Sublime Text 2/Packages
  • Linux: ~/.config/sublime-text-2
  • Portable Installation: Sublime Text 2/Data

Then clone this repository:

git clone git://github.com/graarh/sublime-AutoPHPDollar.git

That's it!

Options

Several options are available to customize the plugin behavior.

Add rules for detecting variables

You can add custom rules, that improves variables detection. The rule contains regular expression to find a variable without dollar character, and the replacement of found text.

"rules": [
    {
        "search":  "(?<![\\$\\w\\d\\>])(\\w[\\w\\d]*)(?=\\s*=)",
        "replace": "$\\1"
    }
]

Add keywords or buildin function names to ignore names list

You can add words, that should be ignored by plugin. It can be buildin function name, like array_walk, or PHP keyword. In PHP, you can use variable name like $private, but you dont want to add the $ sign to each “private” you typed. So, add this name to this list. “ js "ignore names”: [ “private”, “public”, “protected” ]

### Add keywords, that never followed by variable

You can add words, that never has variable name after it. For example, this is the function keyword.
You can not use constructions like function $myfuncname($args) in PHP, so you do not want to add $ sign to the function name. Or constant name.

``` js
"ignore after": [
    "class",
    "function",
    "const"
]

Roadmap and TODO:

  • improve variables detection