summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/man1/fzf.18
1 files changed, 5 insertions, 3 deletions
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 2a528e22..d5fc96ff 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -831,12 +831,14 @@ e.g.
\fB# Start HTTP server on port 6266
fzf --listen 6266
- # Get program state in JSON format (experimental)
- curl localhost:6266
-
# Send action to the server
curl -XPOST localhost:6266 -d 'reload(seq 100)+change-prompt(hundred> )'
+ # Get program state in JSON format (experimental)
+ # * Make sure NOT to access this endpoint from execute/transform actions
+ # as it will result in a timeout
+ curl localhost:6266
+
# Start HTTP server on port 6266 with remote connections allowed
# * Listening on non-localhost address requires using an API key
export FZF_API_KEY="$(head -c 32 /dev/urandom | base64)"