All Projects → fasheng → dired-toggle

fasheng / dired-toggle

Licence: other
Show dired as sidebar and will not create new buffers when changing directory

Programming Languages

emacs lisp
2029 projects

Projects that are alternatives of or similar to dired-toggle

Animsidebar
A SiderBar base on Android that has a beautiful anim
Stars: ✭ 220 (+856.52%)
Mutual labels:  sidebar
pandoc-toc-sidebar
A Pandoc HTML template with TOC on the sidebar, using Bootstrap 3
Stars: ✭ 56 (+143.48%)
Mutual labels:  sidebar
nano-sidebar
Emacs package to have configurable sidebars on a per frame basis.
Stars: ✭ 98 (+326.09%)
Mutual labels:  sidebar
toppy
Overlay library for Angular 7+
Stars: ✭ 81 (+252.17%)
Mutual labels:  sidebar
kirby-previewfiles
💪 A Kirby field to enable file thumbnail preview in the panel sidebar
Stars: ✭ 35 (+52.17%)
Mutual labels:  sidebar
emacs-jest
A package to run jest inside emacs
Stars: ✭ 74 (+221.74%)
Mutual labels:  emacs-packages
React Adminlte Dash
This project is No Longer Maintained. React implementation of AdminLTE themed dashboard
Stars: ✭ 170 (+639.13%)
Mutual labels:  sidebar
epkg
Browse the Emacsmirror package database
Stars: ✭ 45 (+95.65%)
Mutual labels:  emacs-packages
content-aware-sidebars
WordPress Plugin to create and display custom sidebars according to the content being viewed. Fast and powerful.
Stars: ✭ 21 (-8.7%)
Mutual labels:  sidebar
emacs2nix
Automatically generate Nix expressions for Emacs packages
Stars: ✭ 23 (+0%)
Mutual labels:  emacs-packages
discord-sidebar-price-bot
A minimal Discord sidebar price bot (supports forex, crypto, eth gas & fear and greed index)
Stars: ✭ 37 (+60.87%)
Mutual labels:  sidebar
vue-modal
A customizable, stackable, and lightweight modal component for Vue.
Stars: ✭ 96 (+317.39%)
Mutual labels:  sidebar
Docsify-Build-Sidebar
😆 Docsify 侧边栏 : 【自动生成 Docsify 的 Sidebar 与 子目录 Sidebar】
Stars: ✭ 33 (+43.48%)
Mutual labels:  sidebar
Semantic Ui
Semantic is a UI component framework based around useful principles from natural language.
Stars: ✭ 49,729 (+216113.04%)
Mutual labels:  sidebar
angular-sidebarjs
Create mobile sidebar/sidenav experiance in AngularJS
Stars: ✭ 25 (+8.7%)
Mutual labels:  sidebar
Treestyletab
Tree Style Tab, Show tabs like a tree.
Stars: ✭ 2,438 (+10500%)
Mutual labels:  sidebar
dired-rsync
Support for rsync from Emacs dired buffers
Stars: ✭ 93 (+304.35%)
Mutual labels:  emacs-packages
cask-package-toolset.el
🛠 Toolsettize your emacs package! 🛠
Stars: ✭ 30 (+30.43%)
Mutual labels:  emacs-packages
ScoreboardStats
Bukkit plugin for customizing the sidebar of the scoreboard feature from minecraft
Stars: ✭ 29 (+26.09%)
Mutual labels:  sidebar
Boundary
Boundary is a CSS+Javascript library for Chrome extension developers to easily create HTML elements that won’t affect or be affected by the current webpage’s CSS. Strongly recommended if you are considering adding a sticker, a sidebar or any overlay box using content script.
Stars: ✭ 59 (+156.52%)
Mutual labels:  sidebar
MELPA MELPA Stable

Description

dired-toggle command could toggle to show dired buffer as a sidebar for current directory(similar to dired-sidebar, but more lightweight). The sidebar buffer also enabled a minor mode named dired-toggle-mode, and it only contains one buffer instance, change directories in it will not create news buffers.

Usage:

(use-package dired-toggle
  :defer t
  :bind (("<f3>" . #'dired-toggle)
         :map dired-mode-map
         ("q" . #'dired-toggle-quit)
         ([remap dired-find-file] . #'dired-toggle-find-file)
         ([remap dired-up-directory] . #'dired-toggle-up-directory)
         ("C-c C-u" . #'dired-toggle-up-directory))
  :config
  (setq dired-toggle-window-size 32)
  (setq dired-toggle-window-side 'left)

  ;; Optional, enable =visual-line-mode= for our narrow dired buffer:
  (add-hook 'dired-toggle-mode-hook
            (lambda () (interactive)
              (visual-line-mode 1)
              (setq-local visual-line-fringe-indicators '(nil right-curly-arrow))
              (setq-local word-wrap nil))))

Source: https://github.com/fasheng/dired-toggle

Install

You could install it easily through melpa by typing M-x package-install dired-toggle

Screen shot

screenshot.png

(Enabled all-the-icons-dired and dired-subtree in screenshot)

License

GNU General Public License, Version 3.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].