Questions tagged [header-line]
The header line appears, optionally, at the top of a window.
44 questions
0 votes
1 answer
94 views
How can header-line span multiple lines?
I want the full path to be displayed in the header-line, but if the window is too narrow, it won't span multiple lines. ok, but since Dired is able to span multiple lines, why can't header-line do it, ...
2 votes
1 answer
200 views
How to divide too long header-arguments of src-block into multiple lines?
I'm trying to process tens of tables (from multiple org-files) in python src-block at once. Suppose that the following file: /tmp/file1.org contains some tables: * This org contains the tables #+name: ...
0 votes
1 answer
89 views
Path in Header LIne, Truncated
I have the path displayed in the Header Line, but it is truncated when the path is too long. Is there any way to wrap it to go on the next line?
0 votes
1 answer
106 views
How can I specify arbitrary headline numbering in org mode?
Suppose I have the following org file (example.org): * Alpha ** Aleph * Beta * Gamma When I export it to HTML I get: 1. Alpha 1.1. Aleph 2. Beta 3. Gamma Which is quite useful in most cases. Now ...
0 votes
1 answer
159 views
which-function-mode only in python buffers
How can I restrict the which-func-mode and the header bar to python-mode buffers only? I like to use which-func-mode in the headline for Python files/buffers only. In my current config it works that ...
2 votes
1 answer
88 views
How can I copy the faces of a window's mode-line to its header-line?
I want to move my mode-line to the top of each window. So, I've copied its contents into the header-line. (setq-default header-line-format mode-line-format) (setq-default mode-line-format nil) But, I'...
3 votes
3 answers
1k views
How can I disable lsp-headerline?
I'm using centaur tabs, and when lsp-headerline enables my tabs hides. I want to disable that headerline using lsp-headerline-bradcrumb-mode in a hook (use-package lsp-mode :commands (lsp lsp-...
0 votes
1 answer
93 views
How to use header-args variables to fill cell values of a table
I have an org-mode file as such: * Header level 1 :header-args: :var filename="somefile.csv" ** Header level 2 :header-args: :var foo="bar" #+begin_src emacs-lisp foo #+end_src #+...