You are not logged in.
I like using Geany as a text editor. There is only one drawback: you cannot indent only the first line of a paragraph. Perhaps there is some way or plugin to add indentation only for the first line of a paragraph?
According to probability theory, there are joys after troubles
Offline
Manually, by using the Ctrl-I shortcut (listed here under "Editing")...
https://wiki.geany.org/howtos/sorted_keyboard_shortcuts
More info here under "Indentation" and Auto-Indentation"...
No, he can't sleep on the floor. What do you think I'm yelling for?!!!
Offline
Try perltidy (sudo apt install perltidy)
perltidy <input >output --indent-only
man perltidy (but you do not need it)
...Welcome to the family...
Offline
The question is probably: how to view the indented block of text of filetype 'common', where paragraph is single line wrapped. If that is the case then in
~/.config/geany/filedefs/filetypes.common
add
line_wrap_indent=0;0;
Answer found here
https://forum.tinycorelinux.net/index.p … 208.0.html
Offline
Hooray! Thanks to all who responded, especially brontosaurusrex, because by changing line_wrap_indent=0;1; to line_wrap_indent=0;0; in Geany 1.36 on line 86 I got the desired indentation of only the first line of the paragraph.
According to probability theory, there are joys after troubles
Offline