summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2015-04-13 13:49:28 +0200
committerhut <hut@lepus.uberspace.de>2015-04-14 00:14:53 +0200
commit116d214e261b9e76a49411d65045f1a73efb1799 (patch)
tree2d0e2f67537583a59a632db8fe1e995a9ce9ed6a
parent02a1ebe60f0fd7662c2a5776f72b3de044c48b82 (diff)
downloadranger-116d214e261b9e76a49411d65045f1a73efb1799.tar.gz
api.commands: removed alias() and DELETE_WARNING
they were obsolete
-rw-r--r--ranger/api/commands.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/ranger/api/commands.py b/ranger/api/commands.py
index cf8d28a7..2cf96a9f 100644
--- a/ranger/api/commands.py
+++ b/ranger/api/commands.py
@@ -12,9 +12,6 @@ from ranger.core.shared import FileManagerAware
 from ranger.ext.lazy_property import lazy_property
 
 _SETTINGS_RE = re.compile(r'^\s*([^\s]+?)=(.*)$')
-DELETE_WARNING = 'delete seriously? '  # COMPAT
-
-def alias(*_): pass # COMPAT
 
 class CommandContainer(object):
     def __init__(self):
d0527d482bf7bec735d3a949a24d82'>^
8a6679b ^









5983c00 ^
c107db5 ^
26157e6 ^
aa13727 ^
3ce8c9f ^
6e22ccf ^

3ce8c9f ^
de66957 ^
3ce8c9f ^
6e22ccf ^



aa13727 ^
15abade ^
0925dd5 ^

15abade ^
aa13727 ^



ca65478 ^
aa13727 ^



8a5f002 ^


aa13727 ^






ca65478 ^
aa13727 ^



8a5f002 ^

aa13727 ^
8a5f002 ^
aa13727 ^






40bd21c ^
ca65478 ^
40bd21c ^







5cc27f1 ^



6499fc4 ^

aa13727 ^
6b25d06 ^
aa13727 ^

67986e8 ^
72faa19 ^

aa13727 ^
6c5dc70 ^
69b738c ^
7225c99 ^
6c5dc70 ^
7225c99 ^
5cc27f1 ^
7225c99 ^

69b738c ^
aa13727 ^
7225c99 ^
aa13727 ^




46d5f9d ^
6ba400e ^
46d5f9d ^





ca65478 ^
b5159df ^
aa13727 ^
5983c00 ^
aa13727 ^




ca65478 ^
aa13727 ^





5983c00 ^
fee8df6 ^


ca65478 ^
aa13727 ^


42fd392 ^
7009ebf ^

5983c00 ^
aa13727 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
                                                                    


                                        
 

            
                                
 
    
                   









                                        
               
                  
 
                                          
                                  

                                                                     
                                            
                                                                
                 



                                                                      
         
                                     

                                                                 
         



                  
                     



                       


                                                                  






                          
                     



                       

                                                            
                                                            
                                                       






                          
    
                      







                                           



                                                               

 
    
               

                  
 

                     
                       
                                              
                                            
                                
                                 
                                                    
                                                                            

                                         
                                                  
                 
         




                                                          
                       
                                      





                                     
                      
                                                          
               
                          




                             
                      





                                                                    
                  


    
                


                                  
                                                          

                                         
                  

 
/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */
#include "dwm.h"

/* extern */

void (*arrange)(void) = DEFMODE;

void
detach(Client *c) {
	if(c->prev)
		c->prev->next = c->next;
	if(c->next)
		c->next->prev = c->prev;
	if(c == clients)
		clients = c->next;
	c->next = c->prev = NULL;
}

void
dofloat(void) {
	Client *c;

	for(c = clients; c; c = c->next) {
		if(isvisible(c)) {
			if(c->isbanned)
				XMoveWindow(dpy, c->win, c->x, c->y);
			c->isbanned = False;
			resize(c, c->x, c->y, c->w, c->h, True);
		}
		else {
			c->isbanned = True;
			XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
		}
	}
	if(!sel || !isvisible(sel)) {
		for(c = stack; c && !isvisible(c); c = c->snext);
		focus(c);
	}
	restack();
}

void
focusnext(Arg *arg) {
	Client *c;
   
	if(!sel)
		return;
	for(c = sel->next; c && !isvisible(c); c = c->next);
	if(!c)
		for(c = clients; c && !isvisible(c); c = c->next);
	if(c) {
		focus(c);
		restack();
	}
}

void
focusprev(Arg *arg) {
	Client *c;

	if(!sel)
		return;
	for(c = sel->prev; c && !isvisible(c); c = c->prev);
	if(!c) {
		for(c = clients; c && c->next; c = c->next);
		for(; c && !isvisible(c); c = c->prev);
	}
	if(c) {
		focus(c);
		restack();
	}
}

Bool
isvisible(Client *c) {
	unsigned int i;

	for(i = 0; i < ntags; i++)
		if(c->tags[i] && seltag[i])
			return True;
	return False;
}

Client *
nextmanaged(Client *c) {
	for(; c && (c->isfloat || !isvisible(c)); c = c->next);
	return c;
}

void
restack(void) {
	Client *c;
	XEvent ev;

	drawstatus();
	if(!sel)
		return;
	if(sel->isfloat || arrange == dofloat)
		XRaiseWindow(dpy, sel->win);
	if(arrange != dofloat) {
		if(!sel->isfloat)
			XLowerWindow(dpy, sel->win);
		for(c = nextmanaged(clients); c; c = nextmanaged(c->next)) {
			if(c == sel)
				continue;
			XLowerWindow(dpy, c->win);
		}
	}
	XSync(dpy, False);
	while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}

void
togglefloat(Arg *arg) {
	if(!sel || arrange == dofloat)
		return;
	sel->isfloat = !sel->isfloat;
	arrange();
}

void
togglemode(Arg *arg) {
	arrange = (arrange == dofloat) ? dotile : dofloat;
	if(sel)
		arrange();
	else
		drawstatus();
}

void
toggleview(Arg *arg) {
	unsigned int i;

	seltag[arg->i] = !seltag[arg->i];
	for(i = 0; i < ntags && !seltag[i]; i++);
	if(i == ntags)
		seltag[arg->i] = True; /* cannot toggle last view */
	arrange();
}

void
view(Arg *arg) {
	unsigned int i;

	for(i = 0; i < ntags; i++)
		seltag[i] = (arg->i == -1) ? True : False;
	if(arg->i >= 0 && arg->i < ntags)
		seltag[arg->i] = True;
	arrange();
}