如何在Emacs Lisp中创建列视图?

时间:2012-06-30 08:20:02

标签: emacs lisp elisp

我在Elisp中编写自己的模式。它基本上是一个简单的crud应用程序,显示可以通过迷你缓冲区操作的数据行。我想为这些行创建一个看起来像emacs包管理器的视图:数据列很好地对齐。实现这种观点的最佳方法是什么?

3 个答案:

答案 0 :(得分:19)

phils的回答让我走上了正轨。虽然在任何地方都没有教程或简单的例子,所以我创建了一个。下面是一个表格列表模式衍生物的示例,它具有静态数据并可以打印当前列的ID:

(define-derived-mode mymode tabulated-list-mode "mymode" "Major mode My Mode, just a test"
  (setq tabulated-list-format [("Col1" 18 t)
                               ("Col2" 12 nil)
                               ("Col3"  10 t)
                               ("Col4" 0 nil)])
  (setq tabulated-list-padding 2)
  (setq tabulated-list-sort-key (cons "Col3" nil))
  (tabulated-list-init-header))

(defun print-current-line-id ()
  (interactive)
   (message (concat "current line ID is: " (tabulated-list-get-id))))

(defun my-listing-command ()
  (interactive)
  (pop-to-buffer "*MY MODE*" nil)
  (mymode)
  (setq tabulated-list-entries (list 
                (list "1" ["1" "2" "3" "4"])
                (list "2" ["a" "b" "c" "d"])))
  (tabulated-list-print t))

答案 1 :(得分:1)

如果你看一下你提到的软件包列表功能的代码,你就会发现它使用的package-menu-mode来自tabulated-list-mode

  • M-x find-function RET package-menu-mode RET
  • C-h f tabulated-list-mode RET

答案 2 :(得分:0)

我一直使用org-mode来完成这种任务。

这应该是您开发的起点,因为您已经有了很好的表格。