summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/terminal.go3
2 files changed, 0 insertions, 5 deletions
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 2661904e..b6488bdb 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -732,8 +732,6 @@ e.g.
# Send action to the server
curl -XPOST localhost:6266 -d 'reload(seq 100)+change-prompt(hundred> )'
\fR
-
-The port number is exported as \fB$FZF_LISTEN_PORT\fR on the child processes.
.TP
.B "--version"
Display version information and exit
diff --git a/src/terminal.go b/src/terminal.go
index 552daa23..68a099cf 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -2267,9 +2267,6 @@ func (t *Terminal) Loop() {
env = append(env, "FZF_PREVIEW_"+lines)
env = append(env, columns)
env = append(env, "FZF_PREVIEW_"+columns)
- if t.listenPort > 0 {
- env = append(env, fmt.Sprintf("FZF_LISTEN_PORT=%d", t.listenPort))
- }
cmd.Env = env
}