Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In CSS block (inside HMTL file) autocompletion is preventing opening "block" #3100

Closed
babobski opened this issue Sep 15, 2017 · 3 comments
Closed
Assignees
Milestone

Comments

@babobski
Copy link
Contributor

babobski commented Sep 15, 2017

Short Summary

When using CSS blocks inside HTML files, the autocompletion is preventing me to open the css block.
I have to use esc to open the block.

Steps to Reproduce

Create a HTML file:

<!DOCTYPE html>

<html>
<head>
    <title>[[%tabstop:Page Title]]</title>
    <style type="text/css">
        .test 
    </style>
</head>

<body>

[[%tabstop]]

</body>
</html>

After .test ype { and press enter.

Expected results

<!DOCTYPE html>

<html>
<head>
    <title>[[%tabstop:Page Title]]</title>
    <style type="text/css">
        .test {
            
        }
    </style>
</head>

<body>

[[%tabstop]]

</body>
</html>

Actual results

<!DOCTYPE html>

<html>
<head>
    <title>[[%tabstop:Page Title]]</title>
    <style type="text/css">
        .test {-moz-appearance: }
    </style>
</head>

<body>

[[%tabstop]]

</body>
</html>

Platform Information

Komodo Ide 11.0.0 build 90651 windows 10

@mitchell-as
Copy link
Contributor

Related to #3089. This one's tricky.

@Naatan
Copy link
Member

Naatan commented Sep 15, 2017

I think we should just not show completions on {. This is easily done through the config in router.py

@Naatan Naatan self-assigned this Sep 15, 2017
@Naatan Naatan added this to the 11.0.1 milestone Sep 15, 2017
@Naatan
Copy link
Member

Naatan commented Oct 4, 2017

@Naatan Naatan closed this as completed Oct 4, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants