Skip to content

Commit ecaa5f8

Browse files
authored
Merge pull request #1197 from saulpw/menu
[menu-] fix Enter on helpmenu
2 parents c9f76dc + 65f0462 commit ecaa5f8

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# VisiData version history
22

3+
# 2.7.1 (2021-11-15)
4+
5+
- Bugfix: fix Enter on helmenu (reported by @geekscrapy #1196)
6+
37
# 2.7 (2021-11-14)
48

59
## Improvements

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# VisiData v2.7 [![twitter @VisiData][1.1]][1] [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)
2+
# VisiData v2.7.1 [![twitter @VisiData][1.1]][1] [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)
33

44
A terminal interface for exploring and arranging tabular data.
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44
# tox can't actually run python3 setup.py: https://github.com/tox-dev/tox/issues/96
55
#from visidata import __version__
6-
__version__ = '2.7'
6+
__version__ = '2.7.1'
77

88
setup(name='visidata',
99
version=__version__,

visidata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'VisiData: a curses interface for exploring and arranging tabular data'
22

3-
__version__ = '2.7'
3+
__version__ = '2.7.1'
44
__version_info__ = 'VisiData v' + __version__
55
__author__ = 'Saul Pwanson <[email protected]>'
66
__status__ = 'Production/Stable'

visidata/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage: $0 [<options>] [<input> ...]
33
# $0 [<options>] --play <cmdlog> [--batch] [-w <waitsecs>] [-o <output>] [field=value ...]
44

5-
__version__ = '2.7'
5+
__version__ = '2.7.1'
66
__version_info__ = 'saul.pw/VisiData v' + __version__
77

88
from copy import copy

visidata/menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ def runMenu(vd):
764764
elif k in ['KEY_UP', 'k']:
765765
sheet.activeMenuItems[-1] -= 1
766766

767-
elif k in [ENTER, ' ']:
767+
elif k in [ENTER, ' ', '^J', '^M']:
768768
if currentItem.menus:
769769
sheet.activeMenuItems.append(0)
770770
else:

0 commit comments

Comments
 (0)