Module _m.maxima.commands
Commands for the maxima module.
Functions
| close () | Shuts down the Maxima server and closes sockets. |
| printb (txt) | Prints text to the current buffer on a new line. |
| receive () | Receives and returns Maxima server ouput. |
| send (txt, line_end) | Sends text to the Maxim server as input. |
| start (port) | Starts the Maxima server on a specified port. |
Functions
- close ()
- Shuts down the Maxima server and closes sockets.
- printb (txt)
-
Prints text to the current buffer on a new line. This is generally called when data is received from the Maxima server to be displayed.
Parameters
- txt: The text to print to the current buffer.
- receive ()
- Receives and returns Maxima server ouput.
- send (txt, line_end)
-
Sends text to the Maxim server as input.
Parameters
- txt: The text input to send to the Maxima server. If none specified, the current selection or the contents of the current line is used as input.
- line_end: A ';' or '$' character indicating whether or not to print the output of the input to the SciTE buffer. ';' will and '$' won't.
- start (port)
-
Starts the Maxima server on a specified port. Then it creates server and client objects.
Parameters
- port: The port to start the terminal server on.