Skip to content

Commit

Permalink
Updated gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
hgraca committed Apr 22, 2013
1 parent a5412df commit b0410b6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
.buildpath

#sublime files
*.sublime*
*.sublime-project
*.sublime-workspace
.tags*
TODO

Expand All @@ -22,3 +23,6 @@ TODO

#composer files
composer.lock

#phyton compiled files
*.pyc
11 changes: 11 additions & 0 deletions Context.sublime-menu
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
{ "caption": "-" },
{
"caption": "PHP Refactor",
"children":
[
{ "command": "extract", "args": {"execute": false}, "caption": "Extract Method - Diff" },
{ "command": "extract", "args": {"execute": true}, "caption": "Extract Method - Patch" }
]
}
]
4 changes: 4 additions & 0 deletions Default.sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[
{ "keys": ["ctrl+shift+r", "ctrl+shift+1"], "command": "extract", "args": {"execute": false} },
{ "keys": ["ctrl+shift+r", "ctrl+shift+2"], "command": "extract", "args": {"execute": true} }
]
6 changes: 6 additions & 0 deletions sublime-text-2-php-refactor.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
// make a backup before applying changes ? true | false
"backup" : true,
// show a confirmation dialog before applying a patch ? true | false
"confirm" : true
}

0 comments on commit b0410b6

Please sign in to comment.