# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 21
# self = https://watcher.sour.is/conv/hsdxmtq
@movq, maybe you can help me with this. I want to place the vim cursor at the end of the first line on replies, and forks. I have tried adding to this to jenny's configuration:


"editor": "vim \"+normal $\"",



But that doesn't work. How would you go about it?
Today, I learned about vim "+normal $", how cool! :-) Thanks @quark!
@quark Uhm, yeah, that can’t be set in the config file (only by overriding the VISUAL environment variable). It probably should. I’ll fix it.

What’s the goal, though? I usually hit Shift-A in Vim to append text to the end of the line. Is that what you want? 😅
@quark Uhm, yeah, that can’t be set in the config file (only by overriding the VISUAL environment variable). It probably should. I’ll fix it.

What’s the goal, though? I usually hit Shift-A in Vim to append text to the end of the line. Is that what you want? 😅
@quark Uhm, yeah, that can’t be set in the config file (only by overriding the VISUAL environment variable). It probably should. I’ll fix it.

What’s the goal, though? I usually hit Shift-A in Vim to append text to the end of the line. Is that what you want? 😅
@quark Uhm, yeah, that can’t be set in the config file (only by overriding the VISUAL environment variable). It probably should. I’ll fix it.

What’s the goal, though? I usually hit Shift-A in Vim to append text to the end of the line. Is that what you want? 😅
@movq hmm, I guess I could do that too. I have startinsert set on my .vimrc, so I will either have to take it out, or exit insert, $, then insert again. I think the way you do it would be the way to go.

I tried setting VISUAL to be something like vim -c 'star!', which does the same thing, but no dice. :-/
@movq hmm, I guess I could do that too. I have startinsert set on my .vimrc, so I will either have to take it out, or exit insert, $, then insert again. I think the way you do it would be the way to go.

I tried setting VISUAL to be something like vim -c 'star!', which does the same thing, but no dice. :-/
@quark Ah, startinsert, didn’t even know that existed, tbh. 😅

It doesn’t work because the editor command is currently not run through sh -c ..., i.e. it is supposed to be just a path like /usr/bin/vim. I was just stumped by this myself and I think I’ll soon push a patch to allow setting something like vim -c foo.

In the meantime, your best option is probably putting this in your .vimrc:

au BufRead,BufNewFile jenny-posting.eml normal $

(I use something similar to disable hard text wrapping after 72 chars for twtxt postings.)
@quark Ah, startinsert, didn’t even know that existed, tbh. 😅

It doesn’t work because the editor command is currently not run through sh -c ..., i.e. it is supposed to be just a path like /usr/bin/vim. I was just stumped by this myself and I think I’ll soon push a patch to allow setting something like vim -c foo.

In the meantime, your best option is probably putting this in your .vimrc:

au BufRead,BufNewFile jenny-posting.eml normal $

(I use something similar to disable hard text wrapping after 72 chars for twtxt postings.)
@quark Ah, startinsert, didn’t even know that existed, tbh. 😅

It doesn’t work because the editor command is currently not run through sh -c ..., i.e. it is supposed to be just a path like /usr/bin/vim. I was just stumped by this myself and I think I’ll soon push a patch to allow setting something like vim -c foo.

In the meantime, your best option is probably putting this in your .vimrc:

au BufRead,BufNewFile jenny-posting.eml normal $

(I use something similar to disable hard text wrapping after 72 chars for twtxt postings.)
@quark Ah, startinsert, didn’t even know that existed, tbh. 😅

It doesn’t work because the editor command is currently not run through sh -c ..., i.e. it is supposed to be just a path like /usr/bin/vim. I was just stumped by this myself and I think I’ll soon push a patch to allow setting something like vim -c foo.

In the meantime, your best option is probably putting this in your .vimrc:

au BufRead,BufNewFile jenny-posting.eml normal $

(I use something similar to disable hard text wrapping after 72 chars for twtxt postings.)
@movq hmm, I am already using au BufNewFile,BufRead jenny-posting.eml setl completefunc=jenny#CompleteMentions fo-=t wrap, from jenny. How would I go to incorporate that there?
@movq hmm, I am already using au BufNewFile,BufRead jenny-posting.eml setl completefunc=jenny#CompleteMentions fo-=t wrap, from jenny. How would I go to incorporate that there?
@quark I think just putting it there as a second line should work. 😅
@quark I think just putting it there as a second line should work. 😅
@quark I think just putting it there as a second line should work. 😅
@quark I think just putting it there as a second line should work. 😅
@movq woot! Yes! Perfect now. Hitting reply opens it with insert, and prompt at the end of the first line. Just as I wanted it. Thank you much!
@movq woot! Yes! Perfect now. Hitting reply opens it with insert, and prompt at the end of the first line. Just as I wanted it. Thank you much!
@quark @movq A general workaround in these cases is to wrap the command in a shell script and reference said script instead.