File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,12 @@ specifies to redisplay BUFFER on new output. ARGS is the list of
59
59
arguments passed to ``call-process ``. CWD will be working directory
60
60
for running process.
61
61
62
+ .. code :: lisp
63
+
64
+ (call-pythonic :buffer "*Pythonic*"
65
+ :args '("-V")
66
+ :cwd "~")
67
+
62
68
start-pythonic
63
69
~~~~~~~~~~~~~~
64
70
@@ -71,13 +77,35 @@ symbol of process filter function if necessary. SENTINEL must be a
71
77
symbol of process sentinel function if necessary. QUERY-ON-EXIT will
72
78
be corresponding process flag.
73
79
80
+ .. code :: lisp
81
+
82
+ (start-pythonic :process "pythonic"
83
+ :buffer "*Pythonic*"
84
+ :args '("-c" "print('PING')")
85
+ :cwd "~"
86
+ :filter (lambda (process output) (message output))
87
+ :sentinel (lambda (process event) (message "Done."))
88
+ :query-on-exit nil)
89
+
90
+ pythonic-proper-environment-p
91
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
92
+
93
+ Determine if python environment has been changed since PROCESS was started.
94
+
95
+ .. code :: lisp
96
+
97
+ (pythonic-proper-environment-p
98
+ (start-pythonic
99
+ :process "pythonic"
100
+ :args '("-V")))
101
+
74
102
Commands
75
103
--------
76
104
77
105
pythonic-activate
78
106
~~~~~~~~~~~~~~~~~
79
107
80
- Activate python virtual environment.
108
+ Activate python virtual environment. Tramp paths are supported.
81
109
82
110
pythonic-deactivate
83
111
~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments