uname -a Linux antixbox 4.9.235-antix.1-amd64-smp #1 SMP PREEMPT Mon
Sep 14 19:26:52 EEST 2020 x86_64 GNU/Linux
emacs --version GNU Emacs 27.1
echo $SHELL /usr/bin/zsh
I'm trying to get the following to work:
em() { emacs $1 -geometry "56x23" }
I want to use it as follows e.g. with an existing file:
em testfile.txt
Emacs does launch, but no file buffer.
If I edit the function and replace nano for emacs (and get rid of the geometry stuff), the function works perfectly.
emacs filename -geometry "56x23"? – Tyler Apr 06 '21 at 15:27dashboardpackage? That causes this problem for me. Otherwise, you'll need to investigate your own configuration files to find the culprit. – Tyler Apr 06 '21 at 19:25dashboardheadsup! I'll have to check in the antiX forum to see if it does get used. Thx for the URL! – duke Apr 07 '21 at 00:16$1with"$@"– phils May 08 '21 at 01:26