Skip to content

namikister/mark-select

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

mark-select.el: An Emacs library for mark and select interface

Overview

mark-select.el is an Emacs library to mark and select from specified multiple options like the interface used in dired.

How to use

This library can be used like below code.

(let ((hash (make-hash-table :test 'equal)))
  (setf (gethash "lang" hash) '("Select program languages"
                                (("Lisp" . t) "Perl" "Ruby")))
  (setf (gethash "file" hash) '("Select files"
                                (("file1" . t)
                                 ("file2" . t)
                                 ("file3" . t))))
  (mark-select-multi hash))

About

Emacs lisp library for mark and select

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published