You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really like the easy syntax customization avaiable with your program
and because of that I'd like to use it as my daily activities tool.
But I really need a remote editing feature like the one available with textmate (rmate).
I discovered a standalone server that duplicates the rmate server functionality: https://github.com/xiaozhuai/rmate-server
so in theory it would be possibile to have the rmate functionality in CotEditor too,
with no effort.
With this server I'm able to edit remote files with atom (I made a test to see if the server works) for example
but not with CotEditor.
I've installed the cot python script via symlink and it works if used from the terminal,
permission in system preferences have been set to.
In my test, the file is moved from the server to my mac but then the CotEditor window
is not opened.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi there,
I really like the easy syntax customization avaiable with your program
and because of that I'd like to use it as my daily activities tool.
But I really need a remote editing feature like the one available with textmate (rmate).
I discovered a standalone server that duplicates the rmate server functionality:
https://github.com/xiaozhuai/rmate-server
so in theory it would be possibile to have the rmate functionality in CotEditor too,
with no effort.
With this server I'm able to edit remote files with atom (I made a test to see if the server works) for example
but not with CotEditor.
I've installed the cot python script via symlink and it works if used from the terminal,
permission in system preferences have been set to.
In my test, the file is moved from the server to my mac but then the CotEditor window
is not opened.
che needed config.json file si correct:
{
"host": "127.0.0.1",
"port": 52698,
"editor": {
"command": "cot",
"args": [
"-w",
"{{file}}"
]
}
}
other mac security check may block the cot program when called by the rmate server?
any ideas?
Beta Was this translation helpful? Give feedback.
All reactions