Stefan Huchler
Stefan Huchler
``` elisp (define-key transmission-mode-map (kbd "A") (lambda () (interactive) (transmission-add (read-string "Magnet URI: ")))) ``` No need for a hook just set the key for the mode. Should do the...
Well I added a cheap version of that in my copy: ``` (defun ytel-search-marked () "docstring" (interactive ) (let* ((query (buffer-substring-no-properties (region-beginning) (region-end)))) (ytel) (ytel-search query))) ``` I as example...
So I know this bug report is maybe not the right place to further discuss this, but I just hacked together or modified your code to use tabulated-list: [ytel-tabulated-list.jpg](https://postimg.cc/dZ2t8T1P) currently...
ok have uploaded it https://github.com/spiderbit/ytel/tree/tabulated-list Saves actually 35 lines of code for the same functionality, maybe if refactored a bit even a bit more.
@pablobc-mx somehow I have tomatoes on my eyes and did not see your pull request and because it's hidden in a separate branch I did not see your changes. I...
One objection of @gRastello was that is now multiple files and that this changes stuff with melpa, techincally there is no need to split it up in multiple files, in...
Ok replacing seq-subseq like that: ```elisp - (concat (seq-subseq title 0 ytel-title-video-reserved-space) + (concat (truncate-string-to-width title ytel-title-video-reserved-space) ``` fixes the problem.
I think you need to be consistent, either you expect no proportional fonts then you can use length and seq-subseq or you want to address proportional fonts then you need...
yeah I also think pressing as example d should toggle through the date limitation and refresh the search each time.
I just merged my changes to my master branch and tried to rebase your changes somehow I ended up with 2 merges and some commits double in my history, probably...