abbreviations don’t expand when there’s a following right curly bracket
a{c} -> expand in a{canvas}
the cursor is after the “c” and before the “}” of course
abbreviations don’t expand when there’s a following right curly bracket
a{c} -> expand in a{canvas}
the cursor is after the “c” and before the “}” of course
I think it’s bug in css:
div c|{ } -> div color:#; { }
div c| { } -> div canvas { }
div { c|} -> div { canvas}
div { }c| -> div { }canvas
div, c|{ } -> div, color:#; { }
div, c| { } -> div, canvas { }
div { c| margin:10px; } -> div { color:#; margin:10px; }
div { margin:10px; c|} -> div { margin:10px; canvas}
| - cursor place when I click Tab.
div {
c|
}
|
V
div {
color:#;
}
If “}” in next line then all currently works.
in html works perfect
i doubt it’s the way it should be
not exactly sure at a glance what your issue is …
but i know there was a bug in the css grammar …
plan on giving Zen some love in a few weeks when my current contract ends …
[quote=“castles_made_of_sand”]i doubt it’s the way it should be
not exactly sure at a glance what your issue is …
but i know there was a bug in the css grammar …
plan on giving Zen some love in a few weeks when my current contract ends …[/quote]
i’m sorry…
Sometimes watching a bug like this (| - cursor pos):
[code]
[quote=“Fed03”]
your job!
or misunderstood? [/quote]
I don’t understand
But I sorry I have job too lol
If you (or anyone) wants to help with Zen that would be great. I’m afraid I’m busy for the next few weeks though.
[quote=“castles_made_of_sand”]
[quote=“Fed03”]
your job!
or misunderstood? [/quote]
I don’t understand
But I sorry I have job too lol
If you (or anyone) wants to help with Zen that would be great. I’m afraid I’m busy for the next few weeks though.[/quote]
arent you referring to a job contract XD
anyway i can testfor you sadly not develop
Is it me or has the most recent nightly build broken/overridden parts of the plugin? particularly when expanding CSS shortcuts. Anyone else notice this?
same problem…
bg+
expand to
bg+counter-reset
but must to
background:url('../img/') 0 0 no-repeat;
and similar.
@technobulka looks like it was fixed in latest version - update from package manager.
Is it just me or “disable_completions”: true is ignored?
All my CSS snippets are now ignored
@castles_made_of_sand can you please consider changing following thing?
In default.sublime-keymap:
For "action": "encode_decode_base64"
if operand will be set to "operand": "text.html, source.css, source.scss"
base encoding will work in css and scss as well, also I think actual encode_to_base64 function is a little bit wrong, so in \Packages\ZenCoding\zencoding\actions\basic.py line ~ 773 if you change editor.replace_content('$0' + b64, pos, pos + len(img_path))
to editor.replace_content(b64, pos, pos + len(img_path))
it will work nicely.
Also I confirm that I’m having issues with snippets as well. Another bug report is that when I call ‘wrap zen as you type’ on couple of selected lines or on multiple selection - lines disappear. However it works for just one line. Alt+shift+w also works.
Thanks for your work.
Another bug report is that when I call ‘wrap zen as you type’ on couple of selected lines or on multiple selection
My time for this is pretty limited so I’d pretty please love you long time if you gave me exact repros when reporting bugs
I’ll take your word the patches work nicely
For better or worse, I apply every pull request that’s sent my way.
There just hasn’t been many In the future if you have patches feel free to send one via bitbucket.
I understand every man and his dog uses git/github so I’ll migrate this to Github to make it a bit friendlier
Anyway, I’ll take a quick look now at all the stuff you mentioned.