Ramses

Results 8 comments of Ramses

> Maybe you have a mistaken impression of what is required. An Emacs package can be simply one Elisp file, nothing else. Using tests, git, etc. are not required. See...

Other similar packages for other programming languages when creating a project using the corresponding tool gives you the minimum boiler code to start coding.

For example in `dart`. I can do `dart create -t console-full foo`, it will create directory `foo` and a simple example of a console application inside of it. Now I...

https://github.com/UserNobody14/tree-sitter-dart @ubolonton It seems some people from neovim are using that tree-sitter for dart.

I see thanks. But after adding `(add-hook 'nov-mode-hook 'shrface-mode)`. `org-shifttab` works. `org-cycle` do not work.

I see. I just would like to mention `org-cycle` was working before the update. I will look into outline-magic solution. Thanks

Feel free to close this issue when you see appropriate . I installed outline-magic which allow me to not need org-cycle.

I think this issue is related. I register a common lisp project. ``` (projectile-register-project-type 'lisp '("lisp.org" "README.markdown") :test (format "sbcl --non-interactive --eval '(ql:quickload \"%s/tests\")' --eval '(asdf:test-system :%s)'" (projectile-project-name) (projectile-project-name)) :test-dir...