GithubHelp home page GithubHelp logo

Editor example does not work about pyinquirer HOT 7 OPEN

citguru avatar citguru commented on June 25, 2024 1
Editor example does not work

from pyinquirer.

Comments (7)

CITGuru avatar CITGuru commented on June 25, 2024

Can you please share your environment details. @igor-egorov

from pyinquirer.

nicola-zanardi avatar nicola-zanardi commented on June 25, 2024

Same here, Python 3.7.1 64 bits on win10, clean virtualenv

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

I will check this, been off coding for two months.

from pyinquirer.

 avatar commented on June 25, 2024

I was getting the same error. You fixed the source of the error on May 28, 2019 (9e9efaa), but the latest release on PyPi is from 2018. The error goes away if I change the offending line. I ended up just git cloning the latest commit and installing it from the local folder.

from pyinquirer.

halloleo avatar halloleo commented on June 25, 2024

Same here. I get the error with the PyPI version of PyInquirer under Python 3.7.

from pyinquirer.

jessedp avatar jessedp commented on June 25, 2024

Instead of @nesadi approach, you can also just pass a Validator into the 'validate' key...

from PyInquirer import prompt, Validator, ValidationError
...
class ValidateEditor(Validator):
    def validate(self, document):
        if document.text and len(document.text.split('\n')) <= 1:
            raise ValidationError(
                message='Must be at least 1 line', cursor_position=len(document.text))
...
def askPaste():
    questions = [
        {
            'name': 'content',
            'type': 'editor',
            'message': 'Opening editor',
            # lambda text: len(text.split('\n')) >= 1 or 'Must be at least 1 line',
            'validate': ValidateEditor,
            'eargs': {
                'editor': 'default',
                'ext': '.tmp'
            },


        },
    ]
    return prompt(questions)

from pyinquirer.

cachedout avatar cachedout commented on June 25, 2024

@CITGuru Could we please get a new release to PyPi that includes 9e9efaa ? Many uses of the editor prompt are broken otherwise. Thanks!

from pyinquirer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.