Closer to You (Carly Pearce song)
"Closer to You" is a song recorded by American country music singer Carly Pearce. It was released in November 2018 as the first single from her self-titled second studio album. The song was written by Hillary Lindsey, Gordie Sampson and Troy Verges.
"Closer to You" | ||||
---|---|---|---|---|
Single by Carly Pearce | ||||
from the album Carly Pearce | ||||
Released | November 2, 2018 | |||
Genre | Country | |||
Length | 3:07 | |||
Label | Big Machine | |||
Songwriter(s) | ||||
Producer(s) | busbee | |||
Carly Pearce singles chronology | ||||
|
Charts
Chart (2018–19) | Peak position |
---|---|
Canada Country (Billboard)[1] | 43 |
US Country Airplay (Billboard)[2] | 28 |
US Hot Country Songs (Billboard)[3] | 33 |
gollark: https://www.bbc.co.uk/news/uk-53884401Isn't the education system GREAT?
gollark: Okay, I fixed some bracket handling, great.
gollark: OH NOSEGMENTATION VIOLATIONDEPLOY BEES
gollark: It's not actually finished yet, either.
gollark: ```rust let parser = Parser::new_ext(md, options).map(|ev| match ev { Event::Text(txt) => { match &*txt { "[" => { // wikilink has opened, two consecutive [ if was_bracket { in_wikilink = true; was_bracket = false; } else { was_bracket = true; } Event::Text("".into()) }, "]" => { // wikilink has closed, two consecutive ] if in_wikilink && was_bracket { was_bracket = false; return Event::Html("<a href='/bees'>commit</a>".into()); } if in_wikilink { was_bracket = true; } Event::Text("".into()) }, _ => { let w = was_bracket; was_bracket = false; if w { return Event::Text(format!("bracket!{}", &*txt).into()); } was_bracket = false; if in_wikilink { wlbuf.push_str(&*txt); Event::Text("".into()) } else { Event::Text(txt) } } } }, _ => ev });```
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.