Laszlo Szathmary

Results 31 issues of Laszlo Szathmary

Say I want to sort these lines: ``` bb dd cc aa ``` In Vim it works like this: select the four lines, press "!", type "sort", Enter, and the...

By reading the README it was not clear to me how to use this plugin. Using this screencast (http://vimcasts.org/episodes/creating-repeatable-mappings-with-repeat-vim/) I managed to figure out how it works. Here is a...

Operations can be grouped in two families: insert and copy operations. In the context menu, please add a separator between them: ``` ... { "caption": "-" } ... ``` Thus...

Plase make it installable with `pip`.

In vim, we have Ctrl-a to increase and Ctrl-x to decrease a number. There, you can press for instance Ctrl-a constantly and it'll increase the number rapidly. I expected that...

In the README example, Python 2 is mixed with Python 3: ``` @task() def clean(): '''Clean build directory.''' print 'Cleaning build directory...' @task() def _copy_resources(): '''Copy resource files. This is...

I could set up to autoformat my code upon save. However, import lines were not sorted. From the docs I could figure out how to do it: move the cursor...

Playing the sound file just once is not enough in my opinion to catch one's attention. I prefer playing it 3 times, so I made the following modification to `media.py`:...

micro is an awesome text editor. I think it would deserve a dedicated subreddit. That way it would be much easier to ask for help, share tips, etc. What do...

The code uses the `imp` module, which was deprecated and turned into `importlib` in Python 3.12. To use pynt, we must use Python 3.11 (or a version below). Workaround: with...