I know I can jump between bookmarks in one file by hitting F2. Is it possible to do it on a project level (in between files)?
What about plugins? Sublime Text 3?
Sublime Bookmarks package https://sublime.wbond.net/packages/Sublime%20Bookmarks is what you're looking for I think.
Works with ST2 and ST3.
Related
How do i search for files in Sublime Text 2 inside a project?
I don't want to search the contents of files, just file names.
This should be ridiculously simple but I can't figure out (Google points some answers to the Sublime Text Forum but it is offline right now)
A keyboard shortcut would be amazing.
Press Ctrl+P (or Cmd+P) to open Goto Anything and just start typing the filename you're looking for!
source
Sublime Text 2 on Mountain Lion always makes itself the preferred app to open .md files. I use iA Writer for my programming notes which saves files as .md.
Every time when I right-click "Open As…" and select the "Always with this app" option and then select iA Writer from Applications folder, it reverts back to Sublime Text.
Even when Sublime Text is not even running. I found no options to teach Sublime Text or the OS which files to open with which program.
I need iA writer for my programming notes because of the larger font. It helps me think sharper. So it is programming related. Also when I work in Sublime Text for code I like the clear separation of notes taking and coding.
In Finder, right-click (or Ctrl-click) on a .md file and select the Get Info option. In the window that pops up, select iA Writer from the Open with: dropdown menu, then click the Change All button just below it. Confirm the dialog that pops up, and now all Markdown files should be associated with the correct app. The association may change upon updating Sublime or installing the beta of ST3, but it's easy enough to change back.
The reason your previous action wasn't working was because you were only associating that particular file with iA Writer, not all .md files.
Does anyone know of a plugin for Sublime Text 2 that allows you to preview images? I tend to use Sublime for everything now, but one thing that I miss about Coda is the ability to see pictures without having to leave the program.
Apologies if this has already been answered elsewhere.
Sublime Text 3 dev build 3055 realized with image preview when opening images.
You can download dev builds on the official site.
Sublime Text 3 dev builds are currently available to registered users only.
this one opens default image viewer
Sublime-Text-2-Image-Viewer
How to configure Sublime Text 2 editor for easier working with ATK4 framework?
I'm interested in some standard macros (snippets) for page, view, model files and maybe some more Sublime Text 2 editor configuration details useful for developing in ATK4.
I had two and I've contributed them into atk4/tools folder. You can found them here:
https://github.com/atk4/atk4/tree/master/tools
Feel free to contribute more!
I cannot find any plugins for ATK4. You could make requests for plugins on the ST2 UserEcho and see if you get any bites.
Is there a plug-in (or setting) in sublime2 that shows a side pane with a navigator (or tree view) for the class in an active file? Someting similar to the class navigator in netbeans?
Use the CTRL+R command to browser the symbols on the current file, and CTRL+SHIFT+R (only available in Sublime Text 3) to browse symbols in all file opened in tabs.
I think CTags is a nice candidate too.
It uses the ctags executable to index all your project files and allow you to browse through symbols in your whole project. Quite impressive.
Using Sublime2, the CMD+R is the 'Goto Symbol' option on the 'Goto' menu. You may have remapped it. Whilst it isn't a permanent onscreen navigator (like NetBeans for example), it is pretty quick to use.
CMD+R and SHIFT+CMD+R are available on Sublime Text 3 for Mac. CMD+R will browse symbols on the current open file as stated before here, while SHIFT+CMD+R will browse all symbols in all open files if you don't have a ST3 project open, or browse all symbols in all project files if a project is open.
You have to vote here in order to see this functionality implemented in SublimeText :
http://sublimetext.userecho.com/topics/1265-add-a-class-browser/
In the meantime, CTRL+R is the only alternative...