Git Product home page Git Product logo

emacs-zlc's Introduction

zlc.el

Zsh like completion system for Emacs.

![screenshot of zlc](http://github.com/mooz/emacs-zlc/raw/master/images/screenshot.png"Selecting items in the Completion buffer")

Installation

From package.el with MELPA repository,

M-x package-install zlc

Or you can just put zlc.el in your load path somewhere.

Then, put the following lines into you emacs config.

(require 'zlc)
(zlc-mode t)

Customization

menu select

To simulate zsh's `menu select', zlc arranges movement commands for 4 directions. If you want to use these commands, bind them to certain keys in your emacs config.

(let ((map minibuffer-local-map))
  ;;; like menu select
  (define-key map (kbd "<down>")  'zlc-select-next-vertical)
  (define-key map (kbd "<up>")    'zlc-select-previous-vertical)
  (define-key map (kbd "<right>") 'zlc-select-next)
  (define-key map (kbd "<left>")  'zlc-select-previous)

  ;;; reset selection
  (define-key map (kbd "C-c") 'zlc-reset)
  )

complete immediately

If you want zlc to select completion immediately when Completions buffer is created, set non-Nil value to the zlc-select-completion-immediately.

(setq zlc-select-completion-immediately t)

selected item's style

You can customize the style of the selected item in the Completions buffer.

To change style, M-x customize-face and input zlc-selected-completion-face.

emacs-zlc's People

Contributors

mooz avatar myuhe avatar nna774 avatar slippycheeze avatar uwabami avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.