summary refs log tree commit diff stats
path: root/doc/pydoc/ranger.gui.widgets.browserview.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/pydoc/ranger.gui.widgets.browserview.html')
-rw-r--r--doc/pydoc/ranger.gui.widgets.browserview.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/pydoc/ranger.gui.widgets.browserview.html b/doc/pydoc/ranger.gui.widgets.browserview.html
index 627a62bf..ca15d9e8 100644
--- a/doc/pydoc/ranger.gui.widgets.browserview.html
+++ b/doc/pydoc/ranger.gui.widgets.browserview.html
@@ -62,6 +62,8 @@
 Methods defined here:<br>
 <dl><dt><a name="BrowserView-__init__"><strong>__init__</strong></a>(self, win, ratios, preview<font color="#909090">=True</font>)</dt></dl>
 
+<dl><dt><a name="BrowserView-change_ratios"><strong>change_ratios</strong></a>(self, ratios, resize<font color="#909090">=True</font>)</dt></dl>
+
 <dl><dt><a name="BrowserView-click"><strong>click</strong></a>(self, event)</dt></dl>
 
 <dl><dt><a name="BrowserView-close_pager"><strong>close_pager</strong></a>(self)</dt></dl>
@@ -74,10 +76,14 @@ Methods defined here:<br>
 
 <dl><dt><a name="BrowserView-poke"><strong>poke</strong></a>(self)</dt></dl>
 
+<dl><dt><a name="BrowserView-request_clear"><strong>request_clear</strong></a>(self)</dt></dl>
+
 <dl><dt><a name="BrowserView-resize"><strong>resize</strong></a>(self, y, x, hei, wid)</dt><dd><tt>Resize&nbsp;all&nbsp;the&nbsp;columns&nbsp;according&nbsp;to&nbsp;the&nbsp;given&nbsp;ratio</tt></dd></dl>
 
 <hr>
 Data and other attributes defined here:<br>
+<dl><dt><strong>draw_bookmarks</strong> = False</dl>
+
 <dl><dt><strong>need_clear</strong> = False</dl>
 
 <dl><dt><strong>preview</strong> = True</dl>
'alt'>
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
                                                      

         
                        




                  


                                   

 
                                        
                               
                 
               
 
# Add 3 and 4, and return the result in the exit code.
#
# To run:
#   $ ./translate ex2.mu
#   $ ./a.elf
# Expected result:
#   $ echo $?
#   7

fn main -> _/ebx: int {
  var result/eax: int <- do-add 3 4
  return result
}

fn do-add a: int, b: int -> _/eax: int {
  var result/ecx: int <- copy a
  result <- add b
  return result
}