garlic0x1
garlic0x1
Just pushed another update that adds the `-i` flag for limiting the crawl to inside a path. for example `echo https://example.com/outer_path/path1 | hakrawler -i` will not crawl https://example.com/outer_path/
> Would happily take a PR for this issue @AdamFrey ... PR submitted
I am not sure if depending on `cl-template` in an extension asd file is okay, however I think it might be worth adding it in the qlfile because it will...
- Insert location and messages I removed the command so this shouldn't be much of an issue, I really only intend for this to be used in an automatic fashion,...
Okay, I have added the option to use named templates, if there are multiple templates registered for a pattern, it prompts the user to choose one, otherwise it automatically uses...
Added `register-snippet`, `register-snippets`, and `insert-snippet` You can use a file, like with templates, or just a string if its small. ```lisp (register-snippets (:mode 'lem-lisp-mode:lisp-mode :name "test" :string "(message \"testing\")") (:mode...
Here is a solution, this gets rid of stderr: ```lisp (define-language-spec (c-spec lem-c-mode:c-mode) :language-id "c" :root-uri-patterns '("compile-commands.json") :command `("bash" "-c" "clangd 2> /dev/null") :install-command "" :readme-url "" :connection-mode :stdio) ```
What is your guys' opinions on adding a feature like this that allows custom post-processing: ```` ```http GET http://localhost/json ```json ```` The idea is that this could be added on...
If someone works on this, please do it for the modeline too.
Are you doing this in a Slime REPL or in the internal Lem REPL? `M-x start-lisp-repl` gives the internal one, `M-x slime` gives what you are used to in Emacs