Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev-mattst branch; ST2 support fixed and new folder list scrolling feature #26

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 64 additions & 6 deletions Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,30 +1,88 @@
[
// Steal open command and use it for iOpener.
{ "keys": ["ctrl+o"], "command": "i_opener" },

// Allow over-riding of iOpener, and show normal system dialog.
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_file" },
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_file" },

// Be especially careful editing the settings below.

////////////////////////////////////////////////////////////////////////////
// Do not edit //
////////////////////////////////////////////////////////////////////////////
// Auto-complete path key.
{
"keys": ["tab"],
"command": "i_opener_complete",
"context": [{"key": "i_opener"}]
},

// Scroll up through history.
{
"keys": ["up"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "up"}
},

// Scroll down through history.
{
"keys": ["down"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "down"}
},

// Scroll up through folder list.
{
"keys": ["ctrl+up"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_up"}
},

// Scroll down through folder list.
{
"keys": ["ctrl+down"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_down"}
},

// Show user's Home folder.
{
"keys": ["ctrl+h"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_home_folder"}
},

// Show the folder of the current File.
{
"keys": ["ctrl+f"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_file_folder"}
},

// Show the current Project folders.
{
"keys": ["ctrl+p"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_project_folders"}
},

// Show the User defined folders; set by the "folders" setting.
{
"keys": ["ctrl+u"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_user_folders"}
},

// Show All the folders; set by the "folder_sequence" setting.
{
"keys": ["ctrl+a"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_folder_sequence_folders"}
}
////////////////////////////////////////////////////////////////////////////
]
70 changes: 64 additions & 6 deletions Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,30 +1,88 @@
[
// Steal open command and use it for iOpener.
{ "keys": ["super+o"], "command": "i_opener" },

// Allow over-riding of iOpener, and show normal system dialog.
{ "keys": ["super+shift+o"], "command": "prompt_open_file" },
{ "keys": ["super+shift+o"], "command": "prompt_open_file" },

// Be especially careful editing the settings below.

////////////////////////////////////////////////////////////////////////////
// Do not edit //
////////////////////////////////////////////////////////////////////////////
// Auto-complete path key.
{
"keys": ["tab"],
"command": "i_opener_complete",
"context": [{"key": "i_opener"}]
},

// Scroll up through history.
{
"keys": ["up"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "up"}
},

// Scroll down through history.
{
"keys": ["down"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "down"}
},

// Scroll up through folder list.
{
"keys": ["super+up"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_up"}
},

// Scroll down through folder list.
{
"keys": ["super+down"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_down"}
},

// Show user's Home folder.
{
"keys": ["super+h"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_home_folder"}
},

// Show the folder of the current File.
{
"keys": ["super+f"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_file_folder"}
},

// Show the current Project folders.
{
"keys": ["super+p"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_project_folders"}
},

// Show the User defined folders; set by the "folders" setting.
{
"keys": ["super+u"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_user_folders"}
},

// Show All the folders; set by the "folder_sequence" setting.
{
"keys": ["super+a"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_folder_sequence_folders"}
}
////////////////////////////////////////////////////////////////////////////
]
72 changes: 65 additions & 7 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,30 +1,88 @@
[
// Steal open command and use it for iOpener.
{ "keys": ["ctrl+o"], "command": "i_opener" },

// Allow over-riding of iOpener, and show normal system dialog.
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_file" },
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_file" },

// Be especially careful editing the settings below.


////////////////////////////////////////////////////////////////////////////
// Do not edit //
////////////////////////////////////////////////////////////////////////////
// Auto-complete path key.
{
"keys": ["tab"],
"command": "i_opener_complete",
"context": [{"key": "i_opener"}]
},

// Scroll up through history.
{
"keys": ["up"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "up"}
},

// Scroll down through history.
{
"keys": ["down"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "down"}
},

// Scroll up through folder list.
{
"keys": ["ctrl+up"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_up"}
},

// Scroll down through folder list.
{
"keys": ["ctrl+down"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_down"}
},

// Show user's Home folder.
{
"keys": ["ctrl+h"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_home_folder"}
},

// Show the folder of the current File.
{
"keys": ["ctrl+f"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_file_folder"}
},

// Show the current Project folders.
{
"keys": ["ctrl+p"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_project_folders"}
},

// Show the User defined folders; set by the "folders" setting.
{
"keys": ["ctrl+u"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_user_folders"}
},

// Show All the folders; set by the "folder_sequence" setting.
{
"keys": ["ctrl+a"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_folder_sequence_folders"}
}
////////////////////////////////////////////////////////////////////////////
]
Loading