Do you want to work on this issue?
You can request for a bounty in order to promote it!
New packages to add and configure #8
evandrocoan posted onGitHub
New packages to add and configure
Take a really big and awesome great care to not install packages as bugged as GotoLastEditEnhanced
. Issue: https://github.com/SublimeTextIssues/Core/issues/1846 (add_regions causes Sublime Text to hang for ever after eating 1.81GB of RAM)!
- https://github.com/alimony/sublime-sort-numerically
- https://github.com/alimony/sublime-natsort (required dependency)
- https://github.com/shagabutdinov/sublime-repeat-command (Do not fork, rebuild it)
- https://github.com/rosshadden/sublime-xpath
- Install https://github.com/oivva/st-file-icons soon as it is available on the package control channel: https://github.com/wbond/package_control_channel/pull/5852
- This is not a package, it is a Emmet feature, find a package for it: http://docs.emmet.io/actions/wrap-with-abbreviation/#removing-list-markers
- https://packagecontrol.io/packages/AutoFileName
- Investigate how to close the multi-selection without close the output panel. Package: https://github.com/evandrocoan/SublimeTextStudio/tree/develop/Clear%20Cursors-Carets
- https://github.com/weslly/Nettuts-Fetch
- https://github.com/ccampbell/sublime-goto-window
- https://github.com/markbirbeck/sublime-text-shell-command
- https://github.com/spywhere/Terminality
- https://github.com/PixnBits/sublime-text-npm
- https://github.com/chrissimpkins/glue
- https://github.com/robinmalburn/sublime-tabfilter
- https://github.com/rajeshvaya/Sublime-Extended-Tab-Switcher
- https://github.com/mghweb/SublimeTabr
- https://github.com/randy3k/AutoWrap
- https://github.com/facelessuser/RegReplace
- https://github.com/redoPop/SublimeGremlins
- https://packagecontrol.io/packages/Indent%20and%20braces
- https://packagecontrol.io/packages/Find%2B%2B
- https://packagecontrol.io/packages/Super%20Calculator
- https://packagecontrol.io/packages/TabsExtra
- https://github.com/MaokaiLin/PowerCursors
- https://packagecontrol.io/packages/UnicodeCompletion
- https://github.com/OdatNurd/OverrideAudit
- https://github.com/naokazuterada/MarkdownTOC
- https://github.com/ahkscript/SublimeAutoHotkey
- https://github.com/deathaxe/EasySettings
- https://github.com/math2001/MarkdownLivePreview
- https://github.com/Thom1729/YAML-Macros
- https://github.com/SublimeText/StatusBarFileSize
- https://github.com/jbrooksuk/InsertNums
- https://github.com/tzvetkoff/sublime_stupid_indent
- https://github.com/OdatNurd/SnAPI
- https://github.com/Remillard/VHDL-Mode
- https://github.com/20Tauri/DoxyDoxygen
- https://github.com/vim-zz/MiniPy
- https://github.com/guillermooo/sublime-troubleshooting
- https://github.com/oleg-shilo/sublime-codemap
- https://github.com/noahcoad/open-url
- https://github.com/titoBouzout/SideBarGit
- https://github.com/gamcoh/QuickEdit
- git clone https://github.com/yrammos/SublimeLog
- https://github.com/bizoo/SmartCursor
- https://github.com/tijn/hosts.tmLanguage
- https://github.com/adzenith/CopyEdit
- https://github.com/alvesjtiago/hover-preview
- https://github.com/heldev/sublime-lines-multisets
- https://github.com/qiray/SublimeOpenedFiles
- https://github.com/stoivo/sublime_switch_panel
- https://github.com/fredcallaway/SublimeLinter-contrib-mypy
- https://github.com/bobthecow/sublime-sane-snippets
- https://github.com/spadgos/sublime-ToggleQuotes
- https://github.com/Josef-Friedrich/TeX-extended-for-Sublime-Text
Currently this is only available for Linux/Mac, see if you can install on windows:
This is a simple package which is not under git, yet. Put it under a git repository and add it as a git submodule:
- Options for typing Unicode characters https://forum.sublimetext.com/t/options-for-typing-unicode-characters/29818
To install these ones after to fork them to github from other git providers as bitbucket:
Study about installing or a improved version. Search for them on Package Control:
See more packages on: https://packagecontrol.io/browse/trending
-
https://github.com/STPackageBundler/package-bundlerDeprecated due:The main reason you can't disable packages on a project-specific basis is because there is only one plugin_host that is run for all Sublime Text windows. That is to say, the plugin architecture is application-level.
Since packages can define Python code that starts threads and in the background, there isn't really a way to "unload" it when a specific Window is focused since it could easy break background processes for other windows.
Due to the Python API, it is certainly possible to mass-enable and disable packages. It seems as though the Package Bundler package that @FichteFoll linked to is one such solution. Just be aware that most plugins aren't really tested in such a way that they are regularly enabled and disabled. You may run into subtle bugs in such situations, such as regions not being removed, syntaxes disappearing that are still applied to a view, etc. https://forum.sublimetext.com/t/can-i-add-syntax-and-if-possible-other-settings-maybe-even-plugins-to-my-project/24801/7