How could I hide the minimap bar on sublimetext 3

Sublimetext3

Sublimetext3 Problem Overview


It takes too much space on the window,

I tried some option in the configuration

It seems not working, any idea ?

User setting

"draw_minimap_border": false,
"draw_minimap": false,
"hide_minimap": true,
"always_show_minimap_viewport": false

![inline](https://i.imgur.com/mnYTOuL.png=300x "Title")

Sublimetext3 Solutions


Solution 1 - Sublimetext3

Click on View (check the mouse arrow/pointer in below image) on top menu bar or hit Alt + V and click Hide Minimapenter image description here

Solution 2 - Sublimetext3

I added a shortcut on Sublime Text 3.

Go to Preferences -> Key Bindings. In user key bindings I added:

[    { "keys": ["ctrl+f2"], "command": "toggle_minimap" },
]

Obviously you can choose another key combination.

Solution 3 - Sublimetext3

I don't believe there's a setting in Sublime Text 3 to hide the minimap by default.

This solution has worked perfectly for me, however:

Save the following Python code as minimap_setting.py in the User directory (in Preferences -> Browse Packages):

# -*- encoding: utf-8 -*-

import sublime
import sublime_plugin

class MinimapSetting(sublime_plugin.EventListener):

    def on_activated(self, view):
        show_minimap = view.settings().get('show_minimap')
        if show_minimap:
            view.window().set_minimap_visible(True)
        elif show_minimap is not None:
            view.window().set_minimap_visible(False)

Then, you just add "show_minimap": false in your settings and you're good to go.

Solution 4 - Sublimetext3

Ctrl+Shift+p to open the command palette, then type in minimap.

enter image description here

Solution 5 - Sublimetext3

It's very easy in Sublime text 3. To hide Minimap:

> View > Hide Minimap

Solution 6 - Sublimetext3

Check your default settings; Preferences -> Settings - Default. If a setting is not listed there, your version of sublime will not handle overriding it in Settings - User - Don't waste your time.

Check if the latest version of sublime has settings you can override - http://docs.sublimetext.info/en/latest/reference/settings.html

On the latest sublime for me, I can't hide tabs, the minimap or the status bar via user settings - just by manually disabling them in the menu dropdown.

Solution 7 - Sublimetext3

Just use package and once for all.

Tools > Command Palette > Package Control: Install Package > Search Close​Minimap​On​Multi​View and install. It will close all minimap for all windows.

Solution 8 - Sublimetext3

Now you can disable on View menu clicking on Hide Minimap.

Solution 9 - Sublimetext3

On SublimeText 3, I can see F2 Keymap, easier, isn't it?

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser3675188View Question on Stackoverflow
Solution 1 - Sublimetext3Sohel Ahmed MesaniyaView Answer on Stackoverflow
Solution 2 - Sublimetext3Lucivaldo CastroView Answer on Stackoverflow
Solution 3 - Sublimetext3Eugene KimView Answer on Stackoverflow
Solution 4 - Sublimetext3Blaž ZupančičView Answer on Stackoverflow
Solution 5 - Sublimetext3sheetalView Answer on Stackoverflow
Solution 6 - Sublimetext3myolView Answer on Stackoverflow
Solution 7 - Sublimetext3Feng LiuView Answer on Stackoverflow
Solution 8 - Sublimetext3Felipe RodriguesView Answer on Stackoverflow
Solution 9 - Sublimetext3Albert CatalàView Answer on Stackoverflow