about summary refs log tree commit diff stats
path: root/archive/0.vm.arc
ModeNameSize
-rw-r--r--Readme.md577log stats plain blame
-rw-r--r--blocking.arc.t900log stats plain blame
-rw-r--r--buffered-stdin.mu1263log stats plain blame
-rw-r--r--callcc.mu599log stats plain blame
-rw-r--r--channel.mu1941log stats plain blame
d---------charterm268log stats plain
-rw-r--r--chessboard.arc.t12726log stats plain blame
-rw-r--r--chessboard.mu11850log stats plain blame
-rw-r--r--color-repl.mu23324log stats plain blame
-rw-r--r--counters.mu1190log stats plain blame
-rw-r--r--edit.arc.t1161log stats plain blame
-rw-r--r--edit.mu813log stats plain blame
-rw-r--r--exuberant-ctags-rc298log stats plain blame
-rw-r--r--factorial.mu629log stats plain blame
-rw-r--r--fork.mu408log stats plain blame
-rw-r--r--generic.mu898log stats plain blame
-rw-r--r--graphics.mu889log stats plain blame
-rw-r--r--highlights969log stats plain blame
-rw-r--r--load.arc775log stats plain blame
-rwxr-xr-xmu615log stats plain blame
-rw-r--r--mu.arc127823log stats plain blame
-rw-r--r--mu.arc.t171613log stats plain blame
-rw-r--r--mu.arc.t.html562366log stats plain blame
-rw-r--r--render.vim5000log stats plain blame
-rw-r--r--scratch.vim1558log stats plain blame
-rw-r--r--stdin.mu1091log stats plain blame
-rw-r--r--tangle.mu963log stats plain blame
-rw-r--r--trace.arc.t73475log stats plain blame
-rw-r--r--trace.mu49823log stats plain blame
-rw-r--r--vimrc.vim270log stats plain blame
-rw-r--r--x.mu142log stats plain blame
o Profanity, equivalent to if the user had entered it. @param line The input to send. */ void prof_send_line(char *line); /** Get the current recipient if in a chat window. @return The JID of the recipient, or NULL if not in a chat window */ char* prof_get_current_recipient(void); /** Get the current room if in a MUC window. @return The JID of the room, or NULL if not in a MUC window */ char* prof_get_current_muc(void); /** Determines if the current window is the console. @return 1 if in the console, 0 otherwise */ int prof_current_win_is_console(void); /** Log a DEBUG message to the profanity log @param message The message to log */ void prof_log_debug(const char *message); /** Log a INFO message to the profanity log @param message The message to log */ void prof_log_info(const char *message); /** Log a WARNING message to the profanity log @param message The message to log */ void prof_log_warning(const char *message); /** Log a ERROR message to the profanity log @param message The message to log */ void prof_log_error(const char *message); /** Determine if window exist with PROF_WIN_TAG @param win The {@link PROF_WIN_TAG} to check @return 1 if the window exists, 0 otherwise */ int prof_win_exists(PROF_WIN_TAG win); /** Create a new window @param win The {@link PROF_WIN_TAG} for the window @param input_handler The WINDOW_CB function to call when input is received for that window */ void prof_win_create(PROF_WIN_TAG win, WINDOW_CB input_handler); /** Focus a window @param win The {@link PROF_WIN_TAG} of the window to focus @return 1 on success, 0 on failure */ int prof_win_focus(PROF_WIN_TAG win); /** Show a line in a window @param win The {@link PROF_WIN_TAG} of the window @param line The line to print @return 1 on success, 0 on failure */ int prof_win_show(PROF_WIN_TAG win, char *line); /** Show a message in a window, using the specified theme. Themes can be must be specified in ~/.local/share/profanity/plugin_themes @param win The {@link PROF_WIN_TAG} to print to @param group The group name in the themes file, or NULL @param item The item name within the group, or NULL @param def A default colour if the theme cannot be found, or NULL @param message the message to print @return 1 on success, 0 on failure */ int prof_win_show_themed(PROF_WIN_TAG tag, char *group, char *key, char *def, char *line);