summary refs log tree commit diff stats
path: root/examples/bash_subshell_notice.sh
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-08-06 23:26:47 +0200
committerhut <hut@lavabit.com>2012-08-06 23:26:47 +0200
commitdfcfd112b1ebfba11a176c39366dc72ad887fd70 (patch)
treed6e4af67732e90bd8374b34d9042e0638c3d040c /examples/bash_subshell_notice.sh
parent796074b541aaca459c594fe517c11d275778eef6 (diff)
downloadranger-dfcfd112b1ebfba11a176c39366dc72ad887fd70.tar.gz
ext.rifle: implemented asking on unknown filetype (in ranger only)
this was requested here: https://github.com/hut/ranger/issues/36

adam8157:
  Why non-text files' default opener is editor now? It invoked open_with
  before.

  I think the old way is better. We can't describe all types in
  rifle.conf, so many types are defined as unknown non-text types, it's
  not appropriate to open them all with editor.
Diffstat (limited to 'examples/bash_subshell_notice.sh')
0 files changed, 0 insertions, 0 deletions
22bb7e35 ^

3dbefa71 ^

22bb7e35 ^
3dbefa71 ^
22bb7e35 ^

3dbefa71 ^


22bb7e35 ^
3dbefa71 ^
22bb7e35 ^
3dbefa71 ^
22bb7e35 ^


3dbefa71 ^
22bb7e35 ^








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














                                                                       
                                                            
 
                                    



                                   
                               






                                                     
                                                   

                                                   

                                               
                           
                                                   

                                                 


                                                               
                           
                                                      
 
                                               


                              
                                                   








                                                     
# 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/>.

if __name__ == '__main__': from __init__ import init; init()

from ranger.container import History
from unittest import TestCase, main
import unittest

class Test(TestCase):
	def test_history(self):
		hist = History(3)
		for i in range(6):
			hist.add(i)
		self.assertEqual([3,4,5], list(hist))

		hist.back()

		self.assertEqual(4, hist.current())
		self.assertEqual([3,4], list(hist))

		self.assertEqual(5, hist.top())

		hist.back()
		self.assertEqual(3, hist.current())
		self.assertEqual([3], list(hist))

		# no change if current == bottom
		self.assertEqual(hist.current(), hist.bottom())
		last = hist.current()
		hist.back()
		self.assertEqual(hist.current(), last)

		self.assertEqual(5, hist.top())

		hist.forward()
		hist.forward()
		self.assertEqual(5, hist.current())
		self.assertEqual([3,4,5], list(hist))


		self.assertEqual(3, hist.bottom())
		hist.add(6)
		self.assertEqual(4, hist.bottom())
		self.assertEqual([4,5,6], list(hist))

if __name__ == '__main__': main()