summary refs log tree commit diff stats
path: root/compiler/semobjconstr.nim
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2020-10-22 12:16:19 +0200
committerGitHub <noreply@github.com>2020-10-22 12:16:19 +0200
commitd8a6b0b04eb690e9d8611bec4ee9d99499cddff1 (patch)
tree96f07db08b84608a7da0556b6a9c57ca8c62a87c /compiler/semobjconstr.nim
parent8da0e01769231d795300c7ce6894178cf6025e19 (diff)
downloadNim-d8a6b0b04eb690e9d8611bec4ee9d99499cddff1.tar.gz
[backport: 1.4] Better linebreaks (#15658)
Diffstat (limited to 'compiler/semobjconstr.nim')
0 files changed, 0 insertions, 0 deletions
nger/__init__.py?id=7bf5f9672ee79489553506831b7cab54a8609077'>7bf5f967 ^
a4570538 ^
9004b653 ^


a4570538 ^
b4c2c703 ^
a36bfd7b ^
65cb1a32 ^
e07d8b03 ^
811b7c28 ^
f7894a15 ^
e07d8b03 ^
811b7c28 ^
65cb1a32 ^
e07d8b03 ^
a36bfd7b ^
7bf5f967 ^


8c4f4189 ^
7bf5f967 ^






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
                                                                 
 



                                                                      
 






                                                                       
 
   
                                            
 


                                                                         
   
 
         
 
             
                    
                     
                                                
                                
 
           
                                     


                                       
                                






                                                                              
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
A console file manager with VI key bindings.

It provides a minimalistic and nice curses interface with a view on the
directory hierarchy.  The secondary task of ranger is to figure out which
program you want to use to open your files with.
"""

import os

# Information
__license__ = 'GPL3'
__version__ = '1.5.0'
__author__ = __maintainer__ = 'Roman Zimbelmann'
__email__ = 'romanz@lavabit.com'

# Constants
RANGERDIR = os.path.dirname(__file__)
TICKS_BEFORE_COLLECTING_GARBAGE = 100
TIME_BEFORE_FILE_BECOMES_GARBAGE = 1200
MACRO_DELIMITER = '%'
LOGFILE = '/tmp/ranger_errorlog'
USAGE = '%prog [options] [path/filename]'

# If the environment variable XDG_CONFIG_HOME is non-empty, CONFDIR is ignored
# and the configuration directory will be $XDG_CONFIG_HOME/ranger instead.
CONFDIR = '~/.config/ranger'

from ranger.core.main import main