Why don't you just use the Ctrl-P? (Goto -> Goto anything
)
Как открыть файл с помощью только клавиатуры в Sublime Text?
Как открыть файл с использованием только клавиатуры в Sublime Text 2/3?
Ищу эквивалент <Esc>:e /path/to/file
от Vim.
5 ответов на вопрос
- Популярные
- Новые
- С комментариями
- Активные
On OS X, Press Cmd-O to open the file browser.
Then, Cmd-Shift-G allows you to enter the name of the folder to go to.
Finally, just type the file name (or a unique prefix) to select the file you want. You can also navigate using the arrow keys.
Plugin for opening files by name
The following plugin allows you to type a file name and have it opened in Sublime Text 2. It should work on any OS.
import sublime, sublime_plugin def open_file(window, filename): window.open_file(filename, sublime.ENCODED_POSITION) class OpenFileByNameCommand(sublime_plugin.WindowCommand): def run(self): fname = self.window.active_view().file_name() if fname == None: fname = "" def done(filename): open_file(self.window, filename) self.window.show_input_panel( "file to open: ", fname, done, None, None)
This allows you to encode a position in that file in the file name:
/path/to/file:42
will open the file and go to line 42/path/to/file:42:23
will open the file and go to line 42, column 23
Selecting a file:
After selection:
For information how plugins work and how you can integrate this in the UI, see this answer.
Sublime Files Sublime Text 2 plugin for keyboard driven file navigation. It is more less like Emacs file opening interface
Take a look at Sublime-File-Navigator plugin it is more VIM-ish
I recently wrote a plugin, iOpener, that will open files from path using completion, directory listings and history. It also sensibly opens folders by adding the into the side bar of a new window.
I tried to emulate the functionality of emacs were possible.
https://github.com/rosshemsley/iOpener
(I know this question is for ST2. I could always back-port the code if there were enough demand. Though I suspect most people use ST3 now.)
Проверено на ST3.1.1, сборка 3176. Это должно работать без какого-либо плагина.
Чтобы открыть файл, который не является частью проекта, например ~ / .bashrc:
В Ubuntu вы можете использовать Ctrl- Oчтобы перейти в диалог открытия файла, а затем Ctrl- Lчтобы получить строку для записи имени файла. Это также работает для скрытых файлов.
На MacOS используйте Cmd- Oи Cmd- Shift- G.
Для файлов проекта используйте Ctrl- Pсоответственно Cmd- P.
Похожие вопросы
-
2
Возвышенный текст 2 «пузырящийся текст»?
-
1
Есть ли что-нибудь вроде «Run» в Sublime Text 2?
-
5
Создание новой команды bash для Sublime Text 2
-
-
2
Поиск определенного слова и изменение его в Sublime Text 2 и Vim
-
2
Как мне получить Sublime Text 2 для правильного цвета SQL, даже если он находится внутри строки php?
-
1
Как я могу настроить возвышенный текст Excute Javascript с Mozilla Rhino
-
1
Возможно ли для Sublime Text 2 сэкономить на потере фокуса?
-
1
Переключение между активными вкладками столбцов в Sublime Text 2
-
2
Sublime Text 2 не отображает текст должным образом, если я запускаю приложение с прикрепленным диспл...
-
1
Sublime Text 2: Редактирование связанных типов файлов в Plist.info не будет работать