equal
deleted
inserted
replaced
1950 pass |
1950 pass |
1951 del win |
1951 del win |
1952 |
1952 |
1953 self.stdscr.clear() |
1953 self.stdscr.clear() |
1954 self.stdscr.refresh() |
1954 self.stdscr.refresh() |
|
1955 |
|
1956 def handlenextsearch(self): |
|
1957 self.searchdirection( |
|
1958 _(b"Next pattern not found (press ENTER)"), forward=True |
|
1959 ) |
|
1960 |
|
1961 def handleprevsearch(self): |
|
1962 self.searchdirection( |
|
1963 _(b"Previous pattern not found (press ENTER)"), forward=False |
|
1964 ) |
1955 |
1965 |
1956 def handlekeypressed(self, keypressed, test=False): |
1966 def handlekeypressed(self, keypressed, test=False): |
1957 """ |
1967 """ |
1958 Perform actions based on pressed keys. |
1968 Perform actions based on pressed keys. |
1959 |
1969 |