NeoCodeMap
HTML rendered code map for sublime text
Details
Installs
- Total 70
- Win 40
- Mac 16
- Linux 14
| Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
NeoCodeMap
This plugin is inspired by sublime-codemap but using Sublime Text 4 capabilities.
It displays on the side of the editor. You can jump to symbol definition and references to it.
It supports all languages through native Sublime indexing.

Specific languages features
Generic
Nesting level is guessed through indentation level.
Markdown
The package supports markdown headings.
Make your own
You can make your own Indenter and register it with register_indenter.
This looks like this for a markdown indenter:
import sublime
from CodeMapManager import indenter
def my_markdown_indenter(view: sublime.View, symbol: sublime.SymbolRegion) -> int:
# process stuff
return x
indenter.register_indenter("text.html.markdown", my_markdown_indenter)
The last registered indenter takes priority.
You can even override the default indenter by overriding None.
import sublime
from CodeMapManager import indenter
def my_default_indenter(view: sublime.View, symbol: sublime.SymbolRegion) -> int:
# process stuff
return x
indenter.register_indenter(None, my_default_indenter)
Installation
This plugins is compatible with Sublime Text >= 4132.
Package Control
The easiest way to install is using Package Control. It's listed as NeoCodeMap.
- Open
Command Paletteusing ctrl+shift+P (Linux/Windows) or cmd+shift+P (OSX) or menu itemTools -> Command Palette.... - Choose
Package Control: Install Package. - Find
NeoCodeMapand hit Enter.
Manual install
Clean repository in your Packages directory.
Command Palette
Press ctrl+shift+P (Linux/Windows) or cmd+shift+p (OSX). Type neocodemap to see the available commands:
- Toggle: Toggle the code map view
- Close All: Close all code maps on all windows
- Move Up: Move to the next symbol on the current view
- Move Down: Move to the previous symbol on the current view
- Preferences: Edit preferences (see below)
Preferences
You can configure the plugin to use:
| Preference | Description | Default |
|---|---|---|
| neocodemap_width | Set the default width of the codemap column The value is a percentage of the layout It should be compride between 0 and 1 where 1 is 100% |
0.20 |
| neocodemap_position | Position of the codemap - auto: opposite position of the sidebar - left: on left - right: on right |
auto |
| neocodemap_max_indent | Choose the maximum indentation level to display Using a negative value disables the limit |
-1 |