about summary refs log tree commit diff stats
path: root/src/plugins
Commit message (Expand)AuthorAgeFilesLines
...
* | Check for win callback hash before removingJames Booth2016-07-211-6/+8
* | Tidy python3 conditional codeJames Booth2016-07-193-272/+76
* | Add python_init_prof()James Booth2016-07-183-13/+16
* | Fix prof module init for python3James Booth2016-07-183-28/+51
* | Added PYTHON3 defineJames Booth2016-07-142-2/+166
|/
* Remove redundant plugin dir functionJames Booth2016-07-131-16/+4
* Free memory when plugin windows closedJames Booth2016-07-131-0/+3
* Add /plugins install commandJames Booth2016-07-122-0/+27
* Remove plugin window on /closeJames Booth2016-07-125-1/+19
* Check for plugin win before creatingJames Booth2016-07-123-0/+19
* Allow reloading all plugins with /plugin reloadJames Booth2016-07-102-0/+22
* Add /plugin reload commandJames Booth2016-07-102-0/+12
* Store python modules on loadJames Booth2016-07-091-9/+13
* Reaload python module if previous loaded on /plugin loadJames Booth2016-07-091-2/+14
* Plugin unload remove cmd_acs and close windowJames Booth2016-07-052-5/+39
* Revert "Move adding plugins commands to autocompleters"James Booth2016-07-052-4/+3
* Move adding plugins commands to autocompletersJames Booth2016-07-052-3/+4
* Add plugins on_unload hookJames Booth2016-07-056-0/+43
* Store plugin completers by plugin nameJames Booth2016-07-053-45/+76
* Pass plugin name to all autocompleter functionsJames Booth2016-07-047-16/+39
* Move prefs_remove_plugin to plugins_unloadJames Booth2016-07-041-1/+3
* Remove plugin callbacks in plugin_destroy functionsJames Booth2016-07-044-1/+12
* Store plugin window callbacks by plugin nameJames Booth2016-07-043-6/+35
* Use hash table for plugin timed functionsJames Booth2016-07-043-24/+52
* Free plugins commands on quitJames Booth2016-07-046-41/+152
* Rename callback execte and destroy functionsJames Booth2016-07-034-17/+17
* Add plugin name to win_create api callJames Booth2016-07-036-6/+15
* Move plugin theme and settings initJames Booth2016-07-012-4/+2
* Use hash table to store pluginsJames Booth2016-06-302-94/+128
* Fix plugin load prefsJames Booth2016-06-301-1/+1
* Move plugin config add on loadJames Booth2016-06-301-0/+1
* /plugins unload command and completerJames Booth2016-06-302-0/+22
* Pass plugin name to api layerJames Booth2016-06-304-14/+14
* Revert "WIP - Unload plugin commands"James Booth2016-06-3011-75/+9
* WIP - Unload plugin commandsJames Booth2016-06-2911-9/+75
* Add macro for plugins completer addJames Booth2016-06-234-4/+11
* Add macro for C plugins register_timedJames Booth2016-06-234-8/+15
* Add function to get C plugin nameJames Booth2016-06-233-4/+25
* Add function to get plugin nameJames Booth2016-06-221-0/+20
* Rename command sourcesJames Booth2016-05-224-5/+5
* Add cmd_autocomplete.cJames Booth2016-05-201-3/+3
* Move send stanza functionJames Booth2016-05-061-1/+1
* Move connection fulljid functionJames Booth2016-05-061-1/+1
* Rename jabber_ functionsJames Booth2016-05-062-4/+4
* Add session.cJames Booth2016-05-052-3/+3
* Tidy xmpp headersJames Booth2016-05-041-0/+1
* Plugins: Added prof_disco_add_feature()James Booth2016-04-3010-0/+167
* Plugins: Added more muc hooksJames Booth2016-04-157-4/+94
* Plugins: Added account_name and fulljid to prof_init hookJames Booth2016-04-136-11/+22
* Only complete unloaded plugins on /plugins loadJames Booth2016-04-122-10/+11
>
52




                                                                                          

                                                
                                   

                                                                                         

                       
                                                                                                 
                                                                                            
                                      
                              
                              
                            

                             
                             

        





                               

       
                         
                                                                                     
                              

                                                                                              
                                        
                                           
              
                                  
                                                                                 
                                                  
                                                                                                      

                                       
               
                                                    



       
                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - console.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v2">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 12pt; font-size: 1em; }
.Delimiter { color: #800080; }
.muControl { color: #c0a020; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #c00000; }
.muRecipe { color: #ff8700; }
-->
</style>

<script type='text/javascript'>
<!--

-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># example program: reading events from keyboard or mouse</span>
<span class="Comment">#</span>
<span class="Comment"># Keeps printing 'a' until you press a key or click on the mouse.</span>

<span class="muRecipe">def</span> main [
  <span class="Constant">local-scope</span>
  open-console
  <span class="Delimiter">{</span>
    e:event, found?:bool <span class="Special">&lt;-</span> check-for-interaction
    <span class="muControl">break-if</span> found?
    print-character-to-display<span class="Constant"> 97</span>, <span class="Constant">7/white</span>
    <span class="muControl">loop</span>
  <span class="Delimiter">}</span>
  close-console
  $print e, <span class="Constant">10/newline</span>
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->